35 lines
997 B
Plaintext
35 lines
997 B
Plaintext
server {
|
|
listen 80;
|
|
server_name www.likeshopb2b2c.localhost;
|
|
access_log /logs/www.likeshopb2b2c.localhost_access_nginx.log;
|
|
error_log /logs/www.likeshopb2b2c.localhost_error_nginx.log;
|
|
client_max_body_size 5M;
|
|
location / {
|
|
root /server/public;
|
|
index index.html index.htm index.php;
|
|
if (!-e $request_filename)
|
|
{
|
|
rewrite ^/(.*)$ /index.php?s=$1 last;
|
|
break;
|
|
}
|
|
}
|
|
location ~ /.*\.php/ {
|
|
rewrite ^(.*?/?)(.*\.php)(.*)$ /$2?s=$3 last;
|
|
break;
|
|
}
|
|
error_page 500 502 503 504 /50x.html;
|
|
location = /50x.html {
|
|
root /var/www/html;
|
|
}
|
|
|
|
location ~ \.php$ {
|
|
fastcgi_pass likeshop-php7.2.4-fpm:9000;
|
|
fastcgi_index index.php;
|
|
fastcgi_param SCRIPT_FILENAME /server/public$fastcgi_script_name;
|
|
include fastcgi_params;
|
|
}
|
|
location = /favicon.ico {
|
|
log_not_found off;
|
|
access_log off;
|
|
}
|
|
} |