51 lines
1.1 KiB
Plaintext
51 lines
1.1 KiB
Plaintext
server {
|
|
listen 80;
|
|
index index.php index.html;
|
|
server_name localhost;
|
|
|
|
root /var/www/public;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.php?$query_string;
|
|
}
|
|
|
|
# Proxy Vite requests in development
|
|
location /@vite {
|
|
proxy_pass http://vite:5173;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "upgrade";
|
|
proxy_set_header Host $host;
|
|
proxy_cache_bypass $http_upgrade;
|
|
}
|
|
|
|
location /build/ {
|
|
alias /var/www/public/build/;
|
|
access_log off;
|
|
expires max;
|
|
}
|
|
|
|
location /assets/ {
|
|
alias /var/www/public/assets/;
|
|
access_log off;
|
|
expires max;
|
|
}
|
|
|
|
location ~ \.php$ {
|
|
fastcgi_pass app:9000;
|
|
fastcgi_index index.php;
|
|
include fastcgi_params;
|
|
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
|
|
fastcgi_param DOCUMENT_ROOT $realpath_root;
|
|
}
|
|
|
|
location ~ /\.ht {
|
|
deny all;
|
|
}
|
|
|
|
location ~* \.(css|js|jpg|jpeg|png|gif|ico|svg|woff|woff2|ttf|eot|otf)$ {
|
|
expires max;
|
|
log_not_found off;
|
|
}
|
|
}
|