详解Nginx出现403Forbidden的解决办法
Nginx 也是当前流⾏的⼀款轻量级服务器在⽇常使⽤中呢也会出现⼀些问题今天学习君在安装配置Nginx的时候就出现了403 Forbindden 的被禁⽌访问的错误⽹上搜索之后呢完美解决这⾥给⼤家分享下
话不多说先粘上原版nginx 配置⽂件代码
worker_processes 1;
events {
worker_connections 1024;
}
http {
include pes;
default_type application/octet-stream;
sendfile on;
autoindex on;
keepalive_timeout 65;
fastcgi_connect_timeout 300;
fastcgi_send_timeout 300;
fastcgi_read_timeout 300;
fastcgi_buffer_size 128k;
fastcgi_buffers 4 128k;
fastcgi_busy_buffers_size 256k;
fastcgi_temp_file_write_size 256k;
#gzip on;
gzip on;
gzip_min_length 1k;
gzip_buffers 4 32k;
gzip_http_version 1.1;
gzip_comp_level 2;
gzip_types text/plain application/x-javascript text/css application/xml;
gzip_vary on;
gzip_disable "MSIE [1-6].";
server_names_hash_bucket_size 128;
client_max_body_size 100m;
client_header_buffer_size 256k;
large_client_header_buffers 4 256k;
server {
listen 80;
server_name localhost;
autoindex on; #是否允许访问⽬录
root "C:/WWW";
location / {
index index.html index.htm l.php;
#index.php
autoindex on;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
location ~ \.php(.*)$ {
fastcgi_pass 127.0.0.1:9000;
#fastcgi_index index.php;
fastcgi_split_path_info ^((?U).+\.php)(/?.+)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
include fastcgi_params;
}
}
include vh_*.conf;
}
这么多配置⽂件代码(为了便于查看已经把注释的那些不懂的删除) 学习君也是看不懂的
先说403 出现的原因
当访问该地址的时候,nginx 会按照 index.html,index.htm ,index.PHP 的先后顺序在根⽬录中查⽂件。如果这三个⽂件都不存在,那么nginx就会返回403 Forbidden。
学习君根⽬录下也是没有这三个⽂件的所以直接
root "C:/WWW";
location / {
index index.html index.htm l.php;
#index.php
autoindex on;
}
注释项⽬列表就展⽰出来了
这⾥要注意
autoindex on; 这个默认是off的意思是禁⽌访问⽬录需要开启
还有⼀点推荐⼤家别把配置项都写在这个⽂件当中不便于管理
include vh_*.conf;
可以引⼊这样⼀个域名⼀个配置⽂件⽅便管理
以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。
>nginx 配置文件
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论