server { listen 80; server_name ${SERVER_NAME}; root /var/www/html/public; index index.php; # ------------------------------------------------- # Redirect all HTTP requests to HTTPS (optional, remove if TLS is handled upstream) # ------------------------------------------------- # return 301 https://$host$request_uri; # ------------------------------------------------- # Livewire + Laravel routes (must come before static block) # ------------------------------------------------- location ^~ /livewire/ { try_files $uri /index.php?$query_string; expires off; add_header Cache-Control "no-store"; } # ------------------------------------------------- # Static assets with long caching # ------------------------------------------------- location ~* \.(?:ico|css|js|gif|jpe?g|png|svg|woff2?|eot|ttf|otf|webp|avif)(\?.*)?$ { expires 7d; add_header Cache-Control "public, max-age=604800, immutable"; try_files $uri =404; access_log off; } # ------------------------------------------------- # Main Laravel entry point # ------------------------------------------------- location / { try_files $uri $uri/ /index.php?$query_string; ${BASIC_AUTH_DIRECTIVES} } # ------------------------------------------------- # PHP-FPM configuration (matches your Alpine socket setup) # ------------------------------------------------- location ~ \.php$ { include fastcgi_params; fastcgi_index index.php; fastcgi_pass 127.0.0.1:9000; # <-- switch from socket to TCP fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param DOCUMENT_ROOT $document_root; fastcgi_read_timeout 60s; fastcgi_buffering on; fastcgi_buffers 16 16k; fastcgi_buffer_size 32k; # --- Proxy headers for HTTPS and load balancers --- fastcgi_param HTTP_X_FORWARDED_PROTO $http_x_forwarded_proto; fastcgi_param HTTP_X_FORWARDED_HOST $http_host; fastcgi_param HTTP_X_FORWARDED_FOR $proxy_add_x_forwarded_for; # --- Tell PHP it's HTTPS when forwarded --- set $https_flag ""; if ($http_x_forwarded_proto = "https") { set $https_flag "on"; } fastcgi_param HTTPS $https_flag; } # ------------------------------------------------- # Upload limits # ------------------------------------------------- client_max_body_size 64m; # ------------------------------------------------- # Security headers # ------------------------------------------------- add_header X-Frame-Options "SAMEORIGIN" always; add_header X-Content-Type-Options "nosniff" always; # ------------------------------------------------- # Gzip compression # ------------------------------------------------- gzip on; gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss image/svg+xml; gzip_min_length 1000; gzip_proxied any; gzip_vary on; }