真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

詳解Nginx出現(xiàn)403Forbidden的解決辦法-創(chuàng)新互聯(lián)

Nginx 也是當前流行的一款 輕量級服務器  在日常使用中呢 也會出現(xiàn)一些問題  今天 學習君 在安裝配置Nginx的時候就出現(xiàn)了 403 Forbindden 的被禁止訪問的錯誤   網(wǎng)上搜索之后呢 完美解決  這里給大家分享下

成都創(chuàng)新互聯(lián)專注于沅江網(wǎng)站建設服務及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供沅江營銷型網(wǎng)站建設,沅江網(wǎng)站制作、沅江網(wǎng)頁設計、沅江網(wǎng)站官網(wǎng)定制、成都微信小程序服務,打造沅江網(wǎng)絡公司原創(chuàng)品牌,更為您提供沅江網(wǎng)站排名全網(wǎng)營銷落地服務。

話不多說 先粘 上 原版nginx 配置文件代碼

worker_processes 1; 
 
events { 
  worker_connections 1024; 
} 
 
http { 
  include    mime.types; 
  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; 
 
} 

分享標題:詳解Nginx出現(xiàn)403Forbidden的解決辦法-創(chuàng)新互聯(lián)
文章起源:http://weahome.cn/article/dsosic.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部