A default www.conf somehow always appear in /etc/php-fpm.d/, so my main website .conf file got confused because of the same port, How do i fix this?Nginx 403 forbidden for all filesmy Php-FPM return 500 internal error - nginxaccess denied on nginx and phpUnable to bind listening socket for address php-fpmError with configuring Phabricator with NginxUpgrade PHP, now Phalcon / Nginx no longer worksNginx and PHP-FPM on two separated serverconnect() to unix:/tmp/php-fpm.sock failed (2: No such file or directory)PHP debug environment not working301 Error on nginx with phpmyadmin

Is this Homebrew Eldritch Invocation, Accursed Memory, balanced?

If absolute velocity does not exist, how can we say a rocket accelerates in empty space?

Savage Road Signs

What is Gilligan's full Name?

Why does there seem to be an extreme lack of public trashcans in Taiwan?

Why is the concept of the Null hypothesis associated with the student's t distribution?

What do I need to do, tax-wise, for a sudden windfall?

Print "N NE E SE S SW W NW"

What's the difference between DHCP and NAT? Are they mutually exclusive?

Can I get a photo of an Ancient Arrow?

How to properly use a function under a class?

A life of PhD: is it feasible?

Can an open source licence be revoked if it violates employer's IP?

Why would a home insurer offer a discount based on credit score?

Does WiFi affect the quality of images downloaded from the internet?

how to fix error not showing in magento 2

Why didn't the people of King's Landing riot when the Great Sept of Baelor was destroyed?

What publication claimed that Michael Jackson died in a nuclear holocaust?

How to use the word seem

In The Incredibles 2, why does Screenslaver's name use a pun on something that doesn't exist in the 1950s pastiche?

That's not my X, its Y is too Z

Approach sick days in feedback meeting

I am caught when I was about to steal some candies

Realistic, logical way for men with medieval-era weaponry to compete with much larger and physically stronger foes



A default www.conf somehow always appear in /etc/php-fpm.d/, so my main website .conf file got confused because of the same port, How do i fix this?


Nginx 403 forbidden for all filesmy Php-FPM return 500 internal error - nginxaccess denied on nginx and phpUnable to bind listening socket for address php-fpmError with configuring Phabricator with NginxUpgrade PHP, now Phalcon / Nginx no longer worksNginx and PHP-FPM on two separated serverconnect() to unix:/tmp/php-fpm.sock failed (2: No such file or directory)PHP debug environment not working301 Error on nginx with phpmyadmin






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








-1















I have a Centos 7, Nginx, Php-fpm web server.



Somehow a default www.conf file just appear out of nowhere in /etc/php-fpm.d/ even when i deleted the file (rm www.conf).



My main .conf file got confused because the www.conf use the same port that it listen to, so i'm getting a 502 bad gateway error on the browser.



How do i troubleshoot this?










share|improve this question




























    -1















    I have a Centos 7, Nginx, Php-fpm web server.



    Somehow a default www.conf file just appear out of nowhere in /etc/php-fpm.d/ even when i deleted the file (rm www.conf).



    My main .conf file got confused because the www.conf use the same port that it listen to, so i'm getting a 502 bad gateway error on the browser.



    How do i troubleshoot this?










    share|improve this question
























      -1












      -1








      -1








      I have a Centos 7, Nginx, Php-fpm web server.



      Somehow a default www.conf file just appear out of nowhere in /etc/php-fpm.d/ even when i deleted the file (rm www.conf).



      My main .conf file got confused because the www.conf use the same port that it listen to, so i'm getting a 502 bad gateway error on the browser.



      How do i troubleshoot this?










      share|improve this question














      I have a Centos 7, Nginx, Php-fpm web server.



      Somehow a default www.conf file just appear out of nowhere in /etc/php-fpm.d/ even when i deleted the file (rm www.conf).



      My main .conf file got confused because the www.conf use the same port that it listen to, so i'm getting a 502 bad gateway error on the browser.



      How do i troubleshoot this?







      php linux nginx centos7






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 24 at 23:36









      Kevin MuhammadKevin Muhammad

      31




      31






















          1 Answer
          1






          active

          oldest

          votes


















          0














          Don't delete files that are installed as part of an RPM package and expect them to stay gone. www.conf is part of your package management system's PHP-FPM package – if it's missing, it will be replaced every time there's an update.



          Put your configuration into this file, or if you really don't want to use it for some reason, just erase its contents and leave the empty file in place. Next time there's an update your package manager (e.g. yum) will just put the default file in the directory as www.conf.rpmnew and it won't be parsed.






          share|improve this answer























          • Thank you, i just check that there was a yum cron running. I'm going to disable the auto update and i will rename the www.conf file as you told me to do so. You are very helpful. Regards.

            – Kevin Muhammad
            Mar 25 at 5:41











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55329614%2fa-default-www-conf-somehow-always-appear-in-etc-php-fpm-d-so-my-main-website%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          Don't delete files that are installed as part of an RPM package and expect them to stay gone. www.conf is part of your package management system's PHP-FPM package – if it's missing, it will be replaced every time there's an update.



          Put your configuration into this file, or if you really don't want to use it for some reason, just erase its contents and leave the empty file in place. Next time there's an update your package manager (e.g. yum) will just put the default file in the directory as www.conf.rpmnew and it won't be parsed.






          share|improve this answer























          • Thank you, i just check that there was a yum cron running. I'm going to disable the auto update and i will rename the www.conf file as you told me to do so. You are very helpful. Regards.

            – Kevin Muhammad
            Mar 25 at 5:41















          0














          Don't delete files that are installed as part of an RPM package and expect them to stay gone. www.conf is part of your package management system's PHP-FPM package – if it's missing, it will be replaced every time there's an update.



          Put your configuration into this file, or if you really don't want to use it for some reason, just erase its contents and leave the empty file in place. Next time there's an update your package manager (e.g. yum) will just put the default file in the directory as www.conf.rpmnew and it won't be parsed.






          share|improve this answer























          • Thank you, i just check that there was a yum cron running. I'm going to disable the auto update and i will rename the www.conf file as you told me to do so. You are very helpful. Regards.

            – Kevin Muhammad
            Mar 25 at 5:41













          0












          0








          0







          Don't delete files that are installed as part of an RPM package and expect them to stay gone. www.conf is part of your package management system's PHP-FPM package – if it's missing, it will be replaced every time there's an update.



          Put your configuration into this file, or if you really don't want to use it for some reason, just erase its contents and leave the empty file in place. Next time there's an update your package manager (e.g. yum) will just put the default file in the directory as www.conf.rpmnew and it won't be parsed.






          share|improve this answer













          Don't delete files that are installed as part of an RPM package and expect them to stay gone. www.conf is part of your package management system's PHP-FPM package – if it's missing, it will be replaced every time there's an update.



          Put your configuration into this file, or if you really don't want to use it for some reason, just erase its contents and leave the empty file in place. Next time there's an update your package manager (e.g. yum) will just put the default file in the directory as www.conf.rpmnew and it won't be parsed.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 25 at 3:18









          miken32miken32

          26.5k105275




          26.5k105275












          • Thank you, i just check that there was a yum cron running. I'm going to disable the auto update and i will rename the www.conf file as you told me to do so. You are very helpful. Regards.

            – Kevin Muhammad
            Mar 25 at 5:41

















          • Thank you, i just check that there was a yum cron running. I'm going to disable the auto update and i will rename the www.conf file as you told me to do so. You are very helpful. Regards.

            – Kevin Muhammad
            Mar 25 at 5:41
















          Thank you, i just check that there was a yum cron running. I'm going to disable the auto update and i will rename the www.conf file as you told me to do so. You are very helpful. Regards.

          – Kevin Muhammad
          Mar 25 at 5:41





          Thank you, i just check that there was a yum cron running. I'm going to disable the auto update and i will rename the www.conf file as you told me to do so. You are very helpful. Regards.

          – Kevin Muhammad
          Mar 25 at 5:41



















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55329614%2fa-default-www-conf-somehow-always-appear-in-etc-php-fpm-d-so-my-main-website%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

          용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

          155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해