同一个nginx上安装多个网站的方法
在nginx.conf的http{}中按照说明修改server{}字段
server { listen 80; server_name www.example.com; #所绑定的域名 location / { root example; #该域名对应的网站根目录 index index.html index.htm index.php; } location ~ \.php$ { #支持php root C:/nginx/html; #php访问目录 fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } }
如果想添加多个网站,添加多个server{}并绑定不同的域名,设置不同的根目录即可。
以下是禁止通过ip访问的代码
server { listen 80 default_server; server_name _; return 444; #当有用户通过ip访问时返回的HTTP状态码 }
禁止访问某些目录
location ^~ /admin/test/ { deny all; }
这样就可以禁止访问/admin/test目录下的任何文件
原文地址:http://www.mmuaa.com/post/35f1dd5fa5f389cb.html
转载请注明出处 AE博客|墨渊 » Nginx添加多个网站,禁止通过ip访问,禁止访问某些目录
发表评论