Skip to content

Instantly share code, notes, and snippets.

@karol-may
Created June 17, 2026 08:19
Show Gist options
  • Select an option

  • Save karol-may/2be1c13a394fe97cfb6152bdcab629dd to your computer and use it in GitHub Desktop.

Select an option

Save karol-may/2be1c13a394fe97cfb6152bdcab629dd to your computer and use it in GitHub Desktop.
server {
listen 80;
server_name localhost;
root /var/www/html;
index index.php index.html;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
fastcgi_pass php:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment