akaunting/nginx.conf.example

51 lines
1.4 KiB
Plaintext
Raw Normal View History

2018-12-04 15:31:03 +03:00
server {
listen 80 default_server;
listen 443 ssl http2;
2019-03-06 18:31:47 +03:00
2018-12-04 15:31:03 +03:00
ssl_certificate /ssl/crt/file.crt;
ssl_certificate_key /ssl/key/file.key;
2019-03-06 18:31:47 +03:00
server_name site.com;
2018-12-04 15:31:03 +03:00
root /home/user/site.com;
index index.html index.htm index.php;
charset utf-8;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
# Prevent Direct Access to Protected Files
location ~ \.(env|log) {
deny all;
}
# Prevent Direct Access To Protected Folders
2019-03-06 18:31:47 +03:00
location ~ ^/(app|bootstrap|config|database|resources|routes|storage|tests|artisan) {
deny all;
2018-12-04 15:31:03 +03:00
}
2019-03-06 18:31:47 +03:00
2018-12-04 15:31:03 +03:00
# Prevent Direct Access To modules/vendor Folders Except Assets
2019-03-06 18:31:47 +03:00
location ~ ^/(modules|vendor)\/(.*)\.((?!ico|gif|jpg|jpeg|png|js|css|less|sass|font|woff|woff2|eot|ttf|svg).)*$ {
deny all;
2018-12-04 15:31:03 +03:00
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass 127.0.0.1:9000;
#fastcgi_pass unix:/var/run/php/php7.2-fpm.sock; #depends on the PHP version
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_intercept_errors off;
fastcgi_buffer_size 16k;
fastcgi_buffers 4 16k;
fastcgi_connect_timeout 300;
fastcgi_send_timeout 300;
fastcgi_read_timeout 300;
}
}