nginx代理php设置

2021-04-23 04:28

阅读:317

标签:pass   php   try_files   efault   设置   param   etc   ams   serve   

server {
  listen 80;
  #listen [::]:80 default_server;

  # server_name www.xxx.com;
  root /opt/www.xxx.com;
  index index.php index.html;

  # Load configuration files for the default server block.
  include /etc/nginx/default.d/*.conf;

  location / {
    try_files $uri $uri/ /index.php?q=$uri&$args;
  }

  location ~ \.php$ {
    fastcgi_pass 127.0.0.1:9000;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include fastcgi_params;
  }

  error_page 404 /404.html;
    location = /40x.html {
  }

  error_page 500 502 503 504 /50x.html;
    location = /50x.html {
  }
}

nginx代理php设置

标签:pass   php   try_files   efault   设置   param   etc   ams   serve   

原文地址:https://www.cnblogs.com/kiancyc/p/12240377.html

上一篇:Agri-Net POJ - 1258 prim

下一篇:HTML


评论


亲,登录后才可以留言!