1. 我是皮皮虾首页
  2. 网站部署

配置本地nginx代理文件服务

关闭selinux

  • 不关闭nginx会403
    • 2021/11/18 15:33:07 [error] 7250#7250: *23 opendir() “/data/download” failed (13: Permission denied), client: 192.168.0.2, server: nginx.host.com, request: “GET / HTTP/1.1”, host: “nginx.host.com”
# 临时关闭
setenforce 0

# 永久关闭
vim /etc/selinux/config
SELINUX=disabled

添加conf文件

[root@k8s-manage ~]# mkidr -p /data/download
[root@k8s-manage ~]# cat /etc/nginx/conf.d/nginx.host.com.conf
server {
        listen 80;
        server_name nginx.host.com;
        location / {
                autoindex on;
                default_type text/plain;
                root /data/download;
        }
}

[root@k8s-manage ~]# nginx -s reload

可以访问nginx.host.com了

原创文章,作者:站长,如若转载,请注明出处:https://wsppx.cn/2143/%e7%bd%91%e7%ab%99%e9%83%a8%e7%bd%b2/

发表评论

您的电子邮箱地址不会被公开。 必填项已用*标注