标签:listen code span ret style 返回 root coin pre
有些时候我们希望系统只能通过固定的域名访问,禁止IP或者恶意绑定的域名访问。
下面的nginx配置,假如host变量不是指定的域名,将返回403。
1 server { 2 listen 80; 3 server_name newcoina.xgyxserv.com; 4 5 if ($host != ‘newcoina.xgyxserv.com‘){ 6 return 403; 7 } 8 9 location / { 10 root /www; 11 } 12 }
标签:listen code span ret style 返回 root coin pre
原文地址:https://www.cnblogs.com/fullee/p/12737858.html