我以前
nano /etc/nginx/conf.d/domain.com.conf
---- Copy and Paste ------------------
server {
listen 80;
listen [::]:80;
server_name domain.com;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
location / {
proxy_pass "http://localhost:3000/";
}
}
What thing I need to add then www.domain.com will work properly or redirect to domain.com Please advise me
我应该试试ServerAlias吗?
1条答案
按热度按时间g6baxovj1#
如果您希望同时使用www.和非www,您可以简单地将服务器名称编辑为以下名称。
然而,如果你想将www.重定向到非www,你可以使用这样的if语句:
然而,有这样的讨论,如果语句在nginx中不是首选的,不太确定的有效性,所以这里是另一个可能的解决方案: