nginx: globales "main" file erstellen?

  • Ich weiß nicht so recht wie ich das gut googeln kann.


    Mein Ziel ist es eine Datei zu haben welche


    - zum favicon linkt
    - zum php5-cgi service linkt
    - zu den error pages linkt


    Derzeit habe ich das in jeder vhost Datei was ich aber gern ändern will. Geht das?

    Det blæser en halv pelikan.

    I may look calm. But inside my mind I have killed you 20 times in 5 minutes in 20 different ways.


  • Nur mal so zur Information, wenn du nginx selbst kompilierst (wie man es eigentlich macht) und nicht aus den Paketquellen installiert, gibt es bereits eine globale "nginx.conf" Konfigurationsdatei, die du anscheinend nutzen willst.

    Main: CPU: Intel Core i5-4440 @ 3,10 GHz | CPU-Cooling: Matterhorn -PURE- | RAM: 16GB Crucial Ballistix Sport DDR3-1600 DIMM CL9-9-9-24 |
    Motherboard: ASRock B85M Pro4 | GPU: Sapphire Radeon R9 390X Nitro 8GB GDDR5 |

    SSD: Samsung SSD 840 Evo 500GB | Power Supply: 550 Watt Corsair CS Series Modular 80+ Gold | Case: beQuiet! Silent Base 800


    As I walk through the valley of the shadow of death
    I take a look at my life and realize there's nothin' left.

  • Beitrag von Aebian ()

    Dieser Beitrag wurde gelöscht, Informationen über den Löschvorgang sind nicht verfügbar.
    • Erstelle einen Ordner mit Namen "Includes" in deinem nginx root Verzeichniss
    • Erstelle in diesem Ordner .conf Dateien für favicon, php-cgi usw.
      Eine .conf Datei sieht z.B. so aus:

      Code
      location ~ \.pl|cgi$ {  try_files $uri =404;  gzip off;  fastcgi_pass  127.0.0.1:8999;  fastcgi_index index.pl;  fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;  include fastcgi_params;}



    • .conf Dateien includieren


    Code
    include /etc/nginx/includes/favicon.conf
    			include /etc/nginx/includes/php.conf
    			include /etc/nginx/includes/cgi.conf
    			include /etc/nginx/includes/error-pages.conf


    Cheers!

    Det blæser en halv pelikan.

    I may look calm. But inside my mind I have killed you 20 times in 5 minutes in 20 different ways.