Nginx 1.4.1 に次の nginx 2 仮想ホストがありますが、動作しません。最初の仮想ホストをコメントアウトすると、正常に動作します。以下は私に503エラーを与えます。
私が試すべきアイデアはありますか?
server {
listen *:80;
server_name website.co;
rewrite ^(.*) http://www.website.co$1 permanent;
}
server {
listen *:80;
server_name www.website.co;
index index.php;
root /var/www/html/website.co;
location ~ \.php$ {
try_files $uri = 404;
fastcgi_pass unix:/tmp/website.co.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
fastcgi_intercept_errors on;
}
}
ありがとうございました