在 /etc/nginx/sites-enabled/default
中设置两个 server ,分别指向不同的应用。
重启 Nginx 后却只有写在上面的server中的内容生效,为什么?
现在server中写的server_name是localhost;
,还没用域名,访问时用IP地址。
OS: Ubuntu 14.04 LTS
Nginx: 1.6.0
upstream app {
# Path to Unicorn SOCK file, as defined previously
server unix:/usr/share/nginx/html/app1/sockets/unicorn.app1.sock fail_timeout=0;
}
server {
listen 80;
index index.html index.htm;
server_name localhost;
root /usr/share/nginx/html/app1/public;
try_files $uri/index.html $uri @app;
location @app {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://app;
}
error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html/app1;
}
client_max_body_size 4G;
keepalive_timeout 10;
}
# another virtual host using mix of IP-, name-, and port-based configuration
server {
listen 80;
root /usr/share/nginx/html;
index index.php index.html index.htm;
server_name localhost;
location / {
try_files $uri $uri/ /index.html;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# pass the PHP scripts to FastCGI server listening on the php-fpm socket
location ~ \.php$ {
try_files $uri = 404;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
다른 가상 호스트 도메인 이름은 동일할 수 없습니다. 새
server_name
을 만든 다음/etc/hosts
을 편집하여 새 호스트에 대한 도메인 이름 바인딩을 추가하세요./etc/nginx/sites-enabled/
디렉터리에 서로 다른 서버를 별도로 배치하는 것이 좋습니다.