使用Nginx从一台服务器提供两个站点
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Nginx从一台服务器提供两个站点相关的知识,希望对你有一定的参考价值。
我有一个Rails应用程序在我的服务器上运行,现在我想添加另一个。
我希望nginx检查请求是什么,并根据域名分割流量
两个站点都有自己的nginx.conf符号链接到启用站点,但是我从nginx Starting nginx: nginx: [emerg] duplicate listen options for 0.0.0.0:80 in /etc/nginx/sites-enabled/bubbles:6
开始出错
他们都在聆听80但不同的事情。
网站#1
upstream blog_unicorn {
server unix:/tmp/unicorn.blog.sock fail_timeout=0;
}
server {
listen 80 default deferred;
server_name walrus.com www.walrus.com;
root /home/deployer/apps/blog/current/public;
location ^~ /assets/ {
gzip_static on;
expires max;
add_header Cache-Control public;
}
try_files $uri/index.html $uri @blog_unicorn;
location @blog_unicorn {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://blog_unicorn;
}
error_page 500 502 503 504 /500.html;
client_max_body_size 4G;
keepalive_timeout 10;
}
网站二:
upstream bubbles_unicorn {
server unix:/tmp/unicorn.bubbles.sock fail_timeout=0;
}
server {
listen 80 default deferred;
server_name bubbles.com www.bubbles.com;
root /home/deployer/apps/bubbles/current/public;
location ^~ /assets/ {
gzip_static on;
expires max;
add_header Cache-Control public;
}
try_files $uri/index.html $uri @bubbles_unicorn;
location @bubbles_unicorn {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://bubbles_unicorn;
}
error_page 500 502 503 504 /500.html;
client_max_body_size 4G;
keepalive_timeout 10;
}
default_server参数(如果存在)将使服务器成为指定地址:端口对的默认服务器。
很明显,只能有一个默认服务器。
它还说:
listen指令可以有几个特定于与套接字相关的系统调用的附加参数。它们可以在任何listen指令中指定,但对于给定的地址只能指定一次:端口对。
所以,你应该从default
指令中删除deferred
和listen 80
。同样适用于ipv6only=on
指令。
刚刚遇到同样的问题,但重复的default_server
指令并不是唯一的原因。
您只能在其中一个backlog
指令上使用server_name
参数。
例
网站1:
server {
listen 80 default_server backlog=2048;
server_name www.example.com;
location / {
proxy_pass http://www_server;
}
网站2:
server {
listen 80; ## NOT NOT DUPLICATE THESE SETTINGS 'default_server backlog=2048;'
server_name blogs.example.com;
location / {
proxy_pass http://blog_server;
}
我遇到了同样的问题。我修改了我的/etc/nginx/sites-available/example2.com文件来修复它。我将服务器块更改为
server {
listen 443 ssl; # modified: was listen 80;
listen [::]:443; #modified: was listen [::]:80;
. . .
}
在/etc/nginx/sites-available/example1.com中,我注释掉了listen 80
和listen [::]:80
,因为服务器块已经配置为443。
以上是关于使用Nginx从一台服务器提供两个站点的主要内容,如果未能解决你的问题,请参考以下文章
详解Nginx + Tomcat 反向代理 如何在高效的在一台服务器部署多个站点
在 localhost 中从一台计算机到另一台计算机运行 wordpress 站点