标签: node.js nginx
我在digitaloceans中配置了node.js api,我尝试使用nginx显示mydomain.com而不是IP Server。我在默认的nginx配置中有以下配置:
{{1}}
我使用domain_name A IP_Server配置了域记录。它会重定向到我的服务器,但会更改为https://server_ip而不是https://my_domain.com。
我失踪了什么? 谢谢你。
答案 0 :(得分:0)
您需要在配置文件中添加以下代码:
server { listen 80; # Listen to your server ip address server_name your-server-ip; # Redirect all traffic comming from your-server-ip to your domain return 301 $scheme://example.com$request_uri; }
有关详细信息,请按照here中的步骤进行操作。
答案 1 :(得分:0)
我按照guide
谢谢你。