我是靠谱客的博主 温柔皮皮虾,最近开发中收集的这篇文章主要介绍[原创] Nginx 添加授权访问 使用 httpd-tools,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述


安装 nginx

yum install -y nginx

安装 iptables iptables-services

使用 iptables-services 管理配置文件

yum install -y iptables iptables-services

配置 iptables

# vi /etc/sysconfig/iptable
# 默认有22端口, 复制一行, 改为 nginx 端口即可.
-A INPUT -p tcp -m state --state NEW -m tcp --dport 80 -j ACCEPT

启动 iptables

service iptables start

安装 httpd-tools

# 生成密码
yum install -y httpd-tools

生成密码文件

htpasswd /etc/nginx/httpdwd nginx_user

配置 nginx

# vi /etc/nginx/nginx.conf
# 在 配置中添加 auth_basic 和 auth_bashc_user_file 即可
server {
        listen       80 default_server;
        listen       [::]:80 default_server;
        server_name  _;
        client_max_body_size 10K;
        root         /usr/share/nginx/html;
        # 在这里添加授权配置
        auth_basic "Username and Password are required";
        auth_basic_user_file /etc/nginx/httpdwd;
        # ... ...
    }

启动 nginx

service nginx start

最后

以上就是温柔皮皮虾为你收集整理的[原创] Nginx 添加授权访问 使用 httpd-tools的全部内容,希望文章能够帮你解决[原创] Nginx 添加授权访问 使用 httpd-tools所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(39)

评论列表共有 0 条评论

立即
投稿
返回
顶部