PHP Classes

File: docker/nginx/default.conf

Recommend this page to a friend!
  Classes of Celso   DB Sync   docker/nginx/default.conf   Download  
File: docker/nginx/default.conf
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: DB Sync
Synchronize databases between environments
Author: By
Last change:
Date: 1 month ago
Size: 635 bytes
 

Contents

Class file image Download
server { listen 80 default_server; listen [::]:80 default_server; root /app/public; add_header X-Frame-Options "SAMEORIGIN"; add_header X-Content-Type-Options "nosniff"; index index.php; location / { try_files $uri $uri/ /index.php?$query_string; } error_page 404 /index.php; location ~\.php$ { try_files $uri /index.php =404; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } location ~ /\.(?!well-known).* { deny all; } }