-
-
Notifications
You must be signed in to change notification settings - Fork 596
/
nginx-subfolder.example.conf
71 lines (57 loc) · 2.08 KB
/
nginx-subfolder.example.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
server {
listen 80;
listen [::]:80;
server_name domain.example.com;
return 301 https://domain.example.com$request_uri;
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name domain.example.com;
ssl_certificate /etc/ssl/domain.example.com/ssl-bundle.crt;
ssl_certificate_key /etc/ssl/domain.example.com/domain.example.com.key;
# logging
access_log /var/log/nginx/leantime.access.log;
error_log /var/log/nginx/leantime.error.log warn;
location /leantime/ {
include include.d/auth;
root /var/www/leantime/public/;
access_log /var/log/nginx/scripts.log scripts;
try_files $uri $uri/ /leantime/index.php?$query_string;
rewrite ^/leantime/leantime(/.*)$ /leantime$1 permanent;
location ~.php$ {
root /var/www/leantime/public/;
rewrite ^/leantime(/.*)$ $1 break;
fastcgi_intercept_errors on;
fastcgi_index index.php;
fastcgi_buffers 8 16k;
fastcgi_buffer_size 32k;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME /var/www/leantime/public/$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param DN $ssl_client_s_dn;
fastcgi_pass php-fpm;
}
# assets, media
location ~* \.(?:css(\.map)?|js(\.map)?|jpe?g|png|gif|ico|cur|heic|webp|tiff?|mp3|m4a|aac|ogg|midi?|wav|mp4|mov|webm|mpe?g|avi|ogv|flv|wmv)$ {
rewrite ^/leantime/leantime(/.*)$ /leantime$1 permanent;
rewrite ^/leantime(/.*)$ $1 break;
expires 7d;
access_log off;
}
# svg, fonts
location ~* \.(?:svgz?|ttf|ttc|otf|eot|woff2?)$ {
rewrite ^/leantime/leantime(/.*)$ /leantime$1 permanent;
rewrite ^/leantime(/.*)$ $1 break;
add_header Access-Control-Allow-Origin "*";
expires 7d;
access_log off;
}
# gzip
gzip on;
gzip_vary on;
gzip_proxied any;
gzip_comp_level 6;
gzip_types text/plain text/css text/xml application/json application/javascript application/rss+xml application/atom+xml image/svg+xml;
}
}