โครงการ nginx ในโฟลเดอร์ย่อย


11

ฉันผิดหวังกับการกำหนดค่า nginx ของฉันดังนั้นฉันจึงขอความช่วยเหลือในการเขียนไฟล์กำหนดค่าของฉันเพื่อให้บริการหลายโครงการจากไดเรกทอรีย่อยในรูทเดียวกัน นี่ไม่ใช่โฮสติ้งเสมือนเพราะพวกเขาทั้งหมดใช้ค่าโฮสต์เดียวกัน บางทีตัวอย่างจะอธิบายความพยายามของฉัน:

  • คำขอ192.168.1.1/ควรทำหน้าที่index.phpจาก/var/www/public/
  • คำขอ192.168.1.1/wiki/ควรทำหน้าที่index.phpจาก/var/www/wiki/public/
  • คำขอ192.168.1.1/blog/ควรทำหน้าที่index.phpจาก/var/www/blog/public/

โครงการเหล่านี้ใช้ PHP และใช้ fastcgi

การกำหนดค่าปัจจุบันของฉันน้อยมาก

server {
    listen 80 default;
    server_name localhost;

    access_log /var/log/nginx/localhost.access.log;

    root /var/www;
    index index.php index.html;

    location ~ \.php$ {
        fastcgi_pass  127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME /var/www$fastcgi_script_name;
        include fastcgi_params;
    }
}

ฉันได้ลองทำสิ่งต่าง ๆ ด้วยaliasและrewriteไม่สามารถตั้งค่าสิ่งที่ถูกต้องสำหรับ fastcgi ได้ ดูเหมือนจะมีควรจะเป็นวิธีที่มีคารมคมคายกว่าการเขียนบล็อกสถานที่และการทำซ้ำroot, index, SCRIPT_FILENAMEฯลฯ

พอยน์เตอร์ที่จะพาฉันไปในทิศทางที่ถูกต้องจะได้รับการชื่นชม


จากความอยากรู้คุณคาดหวังว่า URL ใดที่จะสามารถเข้าถึงไฟล์ /var/www/public/wiki/foo.html ได้ที่
natacado

นั่นเป็นประเด็นที่ดีนาตาคาโด ไดเรกทอรีสาธารณะหลักจะเป็นเพียงไฟล์เล็ก ๆ น้อย ๆ และไม่ควรใช้จริง ๆ มันเป็นการตั้งค่าภายในดังนั้นฉันจะควบคุมมันได้ หวังว่าเราจะได้ไม่ต้องไปหา :)
ทิโมธี

คำตอบ:


16

เนื่องจากโครงการของคุณไม่ได้อยู่ในรูทเดียวกันคุณต้องใช้หลาย ๆ ที่สำหรับสิ่งนี้

location /wiki {
    root /var/www/wiki/public;
}

location ~ /wiki/.+\.php$ {
    fastcgi_pass   127.0.0.1:9000;
    fastcgi_param  SCRIPT_FILENAME /var/www/wiki/public$fastcgi_script_name;
}

location /blog {
    root /var/www/blog/public;
}

location ~ /blog/.+\.php$ {
    fastcgi_pass   127.0.0.1:9000;
    fastcgi_param  SCRIPT_FILENAME /var/www/blog/public$fastcgi_script_name;
}

นอกจากนี้ให้วาง fastcgi_index ในไฟล์ fastcgi_params ของคุณและรวมไว้ที่ระดับเซิร์ฟเวอร์วิธีที่คุณจะทำให้ตำแหน่ง php ของคุณมีขนาดเล็กที่สุดเท่าที่จะทำได้


1
นี่เป็นประเภทการกำหนดค่าที่ฉันหวังว่าจะหลีกเลี่ยง ... การทำซ้ำ อนิจจาถ้านี่คือ "เหมาะสม" กว่านั่นคือสิ่งที่ฉันจะทำ ขอบคุณสำหรับความช่วยเหลือ Martin!
ทิโมธี

7

แก้ไขตามตำแหน่ง + นามแฝง:


location / {
   root /var/www/public;
   index index.php;
}
location /blog/ {
   alias /var/www/blog/public/;
   index index.php;
}
location /wiki/ {
   alias /var/www/wiki/public/;
   index index.php;
}

location ~ \.php$ {
   #your fastcgi configuration here 
}


0

นี่คือสิ่งที่ฉันได้ลองรายละเอียดเพิ่มเติมที่http://programmersjunk.blogspot.com/2013/11/nginx-multiple-sites-in-subdirectories.html

    location /Site1/ {
            root /usr/share/nginx/www/Site1;
           try_files $uri $uri/ /index.php?$query_string;
    }

    # the images need a seperate entry as we dont want to concatenate that with index.php      
    location ~ /Site1/.+\.(jpg|jpeg|gif|css|png|js|ico|xml)$ {
            root /usr/share/nginx/www/Site1;
    }
    # pass the PHP scripts to FastCGI server
    location ~ /Site1/.+\.php$ {
            fastcgi_split_path_info ^(.+\.php)(/.+)$;
            allow 127.0.0.1;
    #       # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
    #       # With php5-fpm:
            fastcgi_pass unix:/var/run/php5-fpm.sock;
            include fastcgi_params;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            fastcgi_index index.php;
    }

location /Site3/ {
            root    /usr/share/nginx/www/Site3;
    }

    # pass the PHP scripts to FastCGI server
    location ~ /Site3/.+\.php$ {
            allow 127.0.0.1;
            fastcgi_pass unix:/var/run/php5-fpm.sock;
            include fastcgi_params;
            #we are directly using the $request_filename as its a single php script
            fastcgi_param SCRIPT_FILENAME $request_filename;
    }
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.