码迷,mamicode.com
首页 > 其他好文 > 详细

centos 7.6 安装配置nginx (显示中文目录,带密码验证)

时间:2019-12-25 15:59:51      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:ati   local   nbsp   验证   ret   显示   auth   public   cat   

yum install -y nginx

service nginx start

配置文件重新生效

nginx -s reload

配置文件所在目录 

vim /etc/nginx/nginx.conf

 

 38     server {
 39         listen       80 default_server;
 40         listen       [::]:80 default_server;
 41         server_name  _;
 42 #        root         /usr/share/nginx/html;
 43
 44         # Load configuration files for the default server block.
 45         include /etc/nginx/default.d/*.conf;
 46         charset utf-8,gbk;
 47
 48         location / {
 49                 root /home/user/public;
 50                 autoindex on;
 51                 autoindex_exact_size off;
 52                 autoindex_localtime on;
 53                 auth_basic "secret";
 54                 auth_basic_user_file /home/nginx/passwd.db;
 55                 charset utf-8,gbk;
 56         }

生成密码文件 

htpasswd -c /home/nginx/passwd.db admin

  

centos 7.6 安装配置nginx (显示中文目录,带密码验证)

标签:ati   local   nbsp   验证   ret   显示   auth   public   cat   

原文地址:https://www.cnblogs.com/alantop/p/12096867.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!