在 /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
加入新hosts的網域綁定。建議把不同的 server,分開放在
/etc/nginx/sites-enabled/
目錄下。