29 lines
643 B
Plaintext
29 lines
643 B
Plaintext
server {
|
|
listen 80;
|
|
index index.php index.html;
|
|
server_name _;
|
|
root /var/www/html/public;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.php?$query_string;
|
|
}
|
|
|
|
location ~ \.php$ {
|
|
include fastcgi_params;
|
|
fastcgi_pass app:9000;
|
|
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
|
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
|
}
|
|
|
|
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff2?)$ {
|
|
try_files $uri =404;
|
|
expires 30d;
|
|
access_log off;
|
|
}
|
|
|
|
client_max_body_size 64m;
|
|
sendfile on;
|
|
tcp_nopush on;
|
|
keepalive_timeout 65;
|
|
}
|