Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .docker/web/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ server {
#autoindex on;
index index.php;

# Deny access to dotfiles
location ~ /\. {
deny all;
access_log off;
log_not_found off;
}

location / {
# try to serve file directly, fallback to app.php
try_files $uri /index.php$is_args$args;
Expand Down