博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx设置用户名和密码
阅读量:6615 次
发布时间:2019-06-24

本文共 868 字,大约阅读时间需要 2 分钟。

1
yum  -y 
install 
nginx

nginx部分配置文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
    
server {
        
listen       80 default_server;
        
listen       [::]:80 default_server;
        
server_name  _;
        
root         
/usr/share/nginx/html
;
 
        
# Load configuration files for the default server block.
        
include 
/etc/nginx/default
.d/*.conf;
 
        
location / {
        
auth_basic 
"elk"
;
        
auth_basic_user_file 
/etc/nginx/htpasswd
;
        
}
 
        
error_page 404 
/404
.html;
            
location = 
/40x
.html {
        
}
 
        
error_page 500 502 503 504 
/50x
.html;
            
location = 
/50x
.html {
        
}
    
}
1
2
3
4
[root@l2tp html]
#  htpasswd -cb /etc/nginx/htpasswd liuhx 123456
Adding password 
for 
user liuhx
[root@l2tp html]
# cat /etc/nginx/htpasswd 
liuhx:$apr1$qoRxZ3ly$0PTCsKkfyujESjb8Twdj9/
1
2
[root@l2tp html]
# echo  "test 加密"> /usr/share/nginx/html/index.html 
[root@l2tp html]
#
1
2
nginx -t
nginx

本文转自 小小三郎1 51CTO博客,原文链接:http://blog.51cto.com/wsxxsl/1947098,如需转载请自行联系原作者
你可能感兴趣的文章
《android-文件大小》
查看>>
HTTPS的工作原理
查看>>
PhoneGap使用PushPlugin插件实现消息推送
查看>>
Boyer-Moore 算法介绍
查看>>
关于Java中的单例模式
查看>>
datepicker
查看>>
基于vCenter/ESXi平台CentOS 6.8系统虚拟机Oracle 12c RAC双节点数据库集群搭建
查看>>
CentOS 7输入startx无法启动图形化界面
查看>>
#51CTO学院四周年# 终于在这里遇到你
查看>>
百度首次公布云业务收入,同比增长超100%,跻身国内第三
查看>>
Java学习笔记 1—命名规则、数据类型、运算符
查看>>
FusionCharts入门教程,使用指南
查看>>
我的友情链接
查看>>
数组的一些方法
查看>>
关于MFC中WM_MOUSEHOVER和WM_MOUSELEAVE消息的使用
查看>>
我的友情链接
查看>>
linux下查看nginx,apache,mysql,php的编译参数[转]
查看>>
Android掌中游斗地主游戏源码完整版
查看>>
LeetCode - 26. 删除排序数组中的重复项
查看>>
Linux LVM逻辑卷配置过程详解
查看>>