add docker

This commit is contained in:
arifal hidayat
2025-06-06 22:42:41 +07:00
parent 6f77120c33
commit 9437eb949f
16 changed files with 305 additions and 24 deletions

View File

@@ -0,0 +1,50 @@
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;
}
}