Nginx的安全配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx的安全配置相关的知识,希望对你有一定的参考价值。
nginx的安全配置
Nginx_auth_basic_module 简单认证
用"http basic authentication(简单的认证)"来限制用户的访问
一般的用法
location / {
auth_basic string;
auth_basic_user_file /etc/nginx/conf.d/htpasswd;
}
Syntax: auth_basic string | off;
Default: auth_basic off;
Context: http, server, location, limit_except
使用基本的‘http basic authentication‘用户名和密码验证
Syntax: auth_basic_user_file file;
Default: —
Context: http, server, location, limit_except
指定保存的用户和密码,格式如下
comment
name1:password1
name2:password2:comment
name3:password3以上是关于Nginx的安全配置的主要内容,如果未能解决你的问题,请参考以下文章
Nginx——Nginx启动报错Job for nginx.service failed because the control process exited with error code(代码片段
SpringCloud系列四:Eureka 服务发现框架(定义 Eureka 服务端Eureka 服务信息Eureka 发现管理Eureka 安全配置Eureka-HA(高可用) 机制Eur(代码片段