首页 > 代码库 > nginx主机配置服务

nginx主机配置服务

1.配置监控nginx状态信息

vim /usr/locale/nginx/conf/nginx.conf

server {          listen 8080;          server_name   192.168.1.30;          location / {                stub_status on;                access_log off;                allow 192.168.1.150;   ##只允许该IP访问                deny all;        }    }

访问浏览器显示

技术分享

2.我们都知道在apache下可以配置访问web服务器的某个路径时,自动显示其目录下面的文件列表的,其实Nginx一点也不比apache弱,它当然也可以实现这个功能,而且还非常容易和简单;主要用到autoindex 这个参数来开启,其配置如下

server {    listen 80;    server_name  www.nginx.com nginx.com;    location / {        root /data/www/file;        autoindex on;        autoindex_localtime on;        autoindex_exact_size off;        index index.html index.php;    }    access_log /tmp/test.log;}

3.配置extra

vim conf/nginx.conf
增加该行即可:
include extra/vhost.conf;

添加extra

[root@lnmp nginx]# ls conf/extra/vhost.conf

 

nginx主机配置服务