我在服务器上运行了一个节点Web应用程序。我正在使用pm2运行该应用程序,并且该应用程序在localhost:3000上运行。我有位于/etc/nginx/sites-available/default
的nginx配置文件,如下所示:
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/html;
# Add index.php to the list if you are using PHP
index index.html index.htm index.nginx-debian.html;
server_name _;
location / {
proxy_pass http://localhost:3000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
}
当我转到http://example.com时,该站点可以正常运行,但是当我访问www.example.com时,浏览器显示无法打开页面,找不到服务器。
如何获取nginx配置(或其他配置)以将www请求重定向到http?
答案 0 :(得分:0)
您不必像这样输入server_name:
server_name example.com www.example.com