我是Nginx的新手,我試圖讓子域名工作。nginx - 兩個子域配置
我想要做的就是把我的域(姑且稱之爲example.com
),並添加:
sub1.example.com
,sub2.example.com
,並且也有www.example.com
可用。
我知道如何使用Apache來做到這一點,但Nginx是一個真正的頭部劃痕。
我運行Debian 6
我目前/etc/nginx/sites-enabled/example.com:
server {
server_name www.example.com example.com;
access_log /srv/www/www.example.com/logs/access.log;
error_log /srv/www/www.example.com/logs/error.log;
root /srv/www/www.example.com/public_html;
location/{
index index.html index.htm;
}
location ~ \.php$ {
include /etc/nginx/fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /srv/www/www.example.com/public_html$fastcgi_script_name;
}
}
它正在努力成爲example.com和www.example。 COM。
我試圖在同一文件中添加第二個服務器模塊,如:
server {
server_name www.example.com example.com;
access_log /srv/www/www.example.com/logs/access.log;
error_log /srv/www/www.example.com/logs/error.log;
root /srv/www/www.example.com/public_html;
server {
server_name sub1.example.com;
access_log /srv/www/example.com/logs/sub1-access.log;
error_log /srv/www/example.com/logs/sub1-error.log;
root /srv/www/example.com/sub1;
}
location/{
index index.html index.htm;
}
location ~ \.php$ {
include /etc/nginx/fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /srv/www/www.example.com/public_html$fastcgi_script_name;
}
}
沒有運氣。有任何想法嗎?我非常感謝任何反饋。
我應該提到:sub1.example.com的最終目標是轉到example.com/sub1和sub2.example.com轉到example.com/sub2。我希望這是有道理的。 – boredemt