美文网首页
Nginx 403 访问受限问题

Nginx 403 访问受限问题

作者: 844b9a3a3a68 | 来源:发表于2018-03-18 21:30 被阅读245次

    今天瞎搞,配置了一个文件虚拟目录,结果访问文件一直报403错误,用了好多种方法,终于解决,做个笔记。

    • 1.文件授权:
    chmod 777 /home/image/
    
    • 2.Nginx授权(nginx.conf):
    user  root;
    
    • 3.Nginx域名配置:
    server
        {
        listen 443 ssl;
        
        ssl_certificate /home/xxxx.crt;
            ssl_certificate_key /home/xxxx.key;
            ssl_session_cache    shared:SSL:1m;
            ssl_session_timeout  5m;
            
            #listen [::]:80 default_server ipv6only=on;
            server_name res.apiopen.top;
            index index.html index.htm index.php;
            root  /home/image/;
    
            #error_page  404 https://www.xxxxx.top/404;
            include enable-php.conf;
            
            
            location / {  
            index  index.html index.htm  index.php;
            autoindex  on;  
            }  
            
     
            access_log  /www/wwwlogs/blogaccess.log;
        }
    

    相关文章

      网友评论

          本文标题:Nginx 403 访问受限问题

          本文链接:https://www.haomeiwen.com/subject/mcyyqftx.html