2025年01月08日 建站教程
网站建站很多时候需要搭建二级域名,那么如何利用nginx
搭建一个二级域名呢?下面web建站小编给大家简单介绍一下!
具体代码如下:
server { listen 80; server_name m.lmcjl.com; location / { proxy_set_header x-real-ip $remote_addr; proxy_set_header host $http_host; proxy_pass http://0.0.0.0:8809; } }
nginx配置成功后需要重启nginx才能生效~
sudo $(which nginx) -s stop
sudo $(which nginx)
本文链接:http://so.lmcjl.com/news/20927/