我必须将子域名重定向到一个nginx服务器:first.domainOne.com和second.domainTwo.net
我的nginx sites-available目录中有两个文件(每个文件都有一个符号链接,指向site-enable): first.server文件内容:
server {
root /usr/share/nginx/www;
index index.html index.htm;
server_name first.domainOne.com;
location / {
try_files $uri $uri/ /index.html;
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
}
second.server文件内容:
server{
server_name second.domainTwo.net;
root /usr/share/nginx/test;
index index.html index.htm;
location / {
try_files $uri $uri/ /index.html;
}
}
当我启用这两个文件时,我只能访问/ usr / share / nginx / www的内容(如果我转到first.domainOne.com或second.domainTwo.net)。
我必须能够显示第二个服务器内容(/ usr / share / nginx / test)的唯一方法是从sites-enable中禁用(删除)first.server文件。
这是我的nginx.conf:
user www-data;
worker_processes 4;
pid /var/run/nginx.pid;
events {
worker_connections 768;
}
http {
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
gzip on;
gzip_disable "msie6";
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
编辑:两个重定向都直接指向服务器名称(即http://server.name),但调试日志显示它检测到使用的两个不同的URL):
http://first.domainOne.com -> http://server.name
http://second.domainTwo.net -> http://server.name
server.name是托管我的nginx实例的服务器。
我想念什么?我的配置文件是不正确的还是我需要激活nginx.conf中的选项?
答案 0 :(得分:0)
Nginx支持多个服务器块,您的语法看起来很合理。我怀疑问题可能出在上面没有看到的问题上。尝试保持瘦身搜索服务器块,看看你是否能找到问题。您也可以尝试从/etc/nginx/conf.d/*.conf中删除其他文件以继续简化问题。
关注General debugging tips for Nginx也可以解决您的问题。
您也可以尝试从simple Nginx server block examples开始,然后构建它们以满足您的需求。
最后,你的散文提到有涉及重定向,但我没有在代码中看到重定向你的粘贴。您发布的内容中是否缺少部分配置?问题可能在那里。