mirror of https://github.com/akaunting/docker.git
46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
server {
|
|
server_name akaunting.test;
|
|
listen 80 default_server;
|
|
|
|
access_log /dev/stdout;
|
|
error_log /dev/stdout;
|
|
|
|
root /var/www/akaunting.test;
|
|
index index.php index.html;
|
|
|
|
add_header X-Frame-Options "SAMEORIGIN";
|
|
add_header X-XSS-Protection "1; mode=block";
|
|
add_header X-Content-Type-Options "nosniff";
|
|
|
|
charset utf-8;
|
|
|
|
# Prevent Direct Access To Protected Files
|
|
location ~ \.(env|log) {
|
|
deny all;
|
|
}
|
|
|
|
# Prevent Direct Access To Protected Folders
|
|
location ~ ^/(^app$|bootstrap|config|database|resources|routes|storage|tests|artisan) {
|
|
deny all;
|
|
}
|
|
|
|
# Prevent Direct Access To modules/vendor Folders Except Assets
|
|
location ~ ^/(modules|vendor)\/(.*)\.((?!ico|gif|jpg|jpeg|png|js|css|less|sass|font|woff|woff2|eot|ttf|svg).)*$ {
|
|
deny all;
|
|
}
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.php?$query_string;
|
|
gzip_static on;
|
|
}
|
|
|
|
location ~ \.php$ {
|
|
try_files $uri =404;
|
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
|
fastcgi_pass app:9000;
|
|
fastcgi_index index.php;
|
|
include fastcgi_params;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
|
}
|
|
} |