当前位置:首页 > CMS教程 > Thinkphp > 列表

ThinkPHP 在阿里云上的nginx.config配置实例详解

发布:smiling 来源: PHP粉丝网  添加日期:2021-08-11 14:17:22 浏览: 评论:0 

这篇文章主要介绍了ThinkPHP 在阿里云上的nginx.config配置实例详解,需要的朋友可以参考下,具体代码如下所示:

  1. # For more information on configuration, see: 
  2. #  * Official English Documentation: http://nginx.org/en/docs/ 
  3. #  * Official Russian Documentation: http://nginx.org/ru/docs/ 
  4. user nginx; 
  5. worker_processes auto; 
  6. error_log /var/log/nginx/error.log; 
  7. pid /run/nginx.pid; 
  8. events { 
  9.   worker_connections 1024; 
  10. http { 
  11.   log_format main '$remote_addr - $remote_user [$time_local] "$request" ' 
  12.            '$status $body_bytes_sent "$http_referer" ' 
  13.            '"$http_user_agent" "$http_x_forwarded_for"'
  14.   access_log /var/log/nginx/access.log main; 
  15.   sendfile      on; 
  16.   tcp_nopush     on; 
  17.   tcp_nodelay     on; 
  18.   keepalive_timeout  65; 
  19.   types_hash_max_size 2048; 
  20.   include       /etc/nginx/mime.types; 
  21.   default_type    application/octet-stream; 
  22.   # Load modular configuration files from the /etc/nginx/conf.d directory. 
  23.   # See http://nginx.org/en/docs/ngx_core_module.html#include 
  24.   # for more information. 
  25.   include /etc/nginx/conf.d/*.conf; 
  26.   server { 
  27.     listen    80 default_server; 
  28.     listen    [::]:80 default_server; 
  29.     server_name _; 
  30.     root     /usr/share/nginx/html; 
  31.     # Load configuration files for the default server block. 
  32.     include /etc/nginx/default.d/*.conf; 
  33.     location / { 
  34.        #try_files $uri $uri/ /index.php; 
  35.        root  /usr/share/nginx/html; 
  36.        index index.php index.html index.htm; 
  37.        if (!-e $request_filename) {  rewrite ^(.*)$ /index.php?s=$1 last;  break;  } 
  38.     }       
  39.     # redirect server error pages to the static page /40x.html 
  40.     # 
  41.     error_page 404       /404.html;      
  42.     location = /40x.html { 
  43.     } 
  44.     # redirect server error pages to the static page /50x.html 
  45.     # 
  46.     error_page  500 502 503 504 /50x.html;  
  47.     location = /50x.html { 
  48.     } 
  49.     location ~ \.php$ { 
  50.     root      /usr/share/nginx/html; 
  51.     fastcgi_pass  127.0.0.1:9000; 
  52.     fastcgi_index index.php; 
  53.     fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name
  54.     include    fastcgi_params; 
  55.     } 
  56.     location ~ /\.ht { 
  57.     deny all; 
  58.     } 
  59.   } 
  60. }

Tags: nginx config

分享到: