nginx
作者:
__书山有路__ | 来源:发表于
2020-07-19 22:53 被阅读0次server {
listen 80;
server_name avatar.myphp.vip;
index index.html index.htm index.php;
root /www/lizhi/lizhi_laravel_api/public;
# ssl_certificate /www/key/key_sign/2439852_dengshipeng.top.pem;
# ssl_certificate_key /www/key/key_sign/2439852_dengshipeng.top.key;
location / {
try_files $uri $uri/ /index.php?s=$uri&$query_string;
# try_files $uri $uri/ /index.php?$query_string;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location ~ \.php$ {
fastcgi_pass php:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
本文标题:nginx
本文链接:https://www.haomeiwen.com/subject/fbphfktx.html
网友评论