하위 폴더의 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, 등

나를 올바른 방향으로 향하게하는 모든 조언은 높이 평가됩니다.


호기심으로 /var/www/public/wiki/foo.html 파일에 액세스 할 수있는 URL은 무엇입니까?
natacado

좋은 지적이야, 나타 카도 기본 공용 디렉토리는 몇 가지 기타 파일 일 뿐이므로 실제로는 절대 사용해서는 안됩니다. 내부 설정이므로 제어 할 수 있습니다. 잘만되면 우리는 찾을 필요가 없을 것이다 :)
Timothy

답변:


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
이것은 정확히 내가 복제를 피하기를 바랐던 구성 유형이었습니다. 아아, 이것이 이것이 "적절한"것이라면 내가해야 할 일입니다. 도와 주셔서 감사합니다, 마틴!
디모데

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.