Created
September 14, 2021 15:50
-
-
Save ace3/e9ced94e40a1e54a8d233cdfffbfb146 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
server_name ace3; | |
# Set the port to listen on and the server name | |
listen 80 default_server; | |
# Set the document root of the project | |
root /var/www/html/public; | |
# Set the directory index files | |
index index.php; | |
# Specify the default character set | |
charset utf-8; | |
# Setup the default location configuration | |
location / { | |
try_files $uri $uri/ /index.php; | |
} | |
# Specify the details of favicon.ico | |
location = /favicon.ico { access_log off; log_not_found off; } | |
# Specify the details of robots.txt | |
location = /robots.txt { access_log off; log_not_found off; } | |
# Specify the logging configuration | |
access_log /var/log/nginx/access.log; | |
error_log /var/log/nginx/error.log; | |
sendfile off; | |
client_max_body_size 100m; | |
# Specify what happens when PHP files are requested | |
location ~ \.php$ { | |
fastcgi_split_path_info ^(.+\.php)(/.+)$; | |
fastcgi_pass php:9000; | |
fastcgi_index index.php; | |
include fastcgi_params; | |
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; | |
fastcgi_param APPLICATION_ENV development; | |
fastcgi_intercept_errors off; | |
fastcgi_buffer_size 16k; | |
fastcgi_buffers 4 16k; | |
} | |
# Specify what happens what .ht files are requested | |
location ~ /\.ht { | |
deny all; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment