This repository was archived by the owner on Oct 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathqa.conf
More file actions
102 lines (91 loc) · 2.97 KB
/
Copy pathqa.conf
File metadata and controls
102 lines (91 loc) · 2.97 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# Expires map
map $sent_http_content_type $expires {
default off;
text/html epoch;
text/css epoch;
application/javascript epoch;
~image/ max;
}
server {
listen 80;
server_name ~^(www\.)?(?<sname1>.+?)\.(?<sname2>.+?).flowzqa.tk$;
root /var/www/html/websites/$sname1/$sname2/public;
index index.html index.htm index.php;
charset utf-8;
expires $expires;
location / {
try_files $uri $uri/ /index.html?$query_string;
}
# location ~* \.(jpg|jpeg|png|gif|ico|css|js|json)$ {
# expires 365d;
# }
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
access_log /var/log/nginx/$sname1-access.log;
error_log /var/log/nginx/wildcard-error.log debug;
error_page 404 /index.html;
sendfile off;
location ~ /\.ht {
deny all;
}
}
server {
listen 80 ;
server_name supplier.flowzqa.tk www.supplier.flowzqa.tk;
root /var/www/html/websites/5ad06e92e4159e0015001d5f/acf2959d99a84ea6aeb3820a898792be/public/;
index index.html;
location / {
try_files $uri $uri/ =404;
}
#static file 404's aren't logged and expires header is set to
#maximum age
location ~* \.(jpg|jpeg|gif|css|png|js|ico|html)$ {
access_log off;
expires 30d;
}
}
server {
listen 80 ;
server_name distributor.flowzqa.tk www.distributor.flowzqa.tk;
root /var/www/html/websites/5ad06e92e4159e0015001d5f/36a9a915e2cf4f5eaafcc251664a64b8/public/;
index index.html;
location / {
try_files $uri $uri/ =404;
}
#static file 404's aren't logged and expires header is set to
#maximum age
location ~* \.(jpg|jpeg|gif|css|png|js|ico|html)$ {
access_log off;
expires 30d;
}
}
server {
listen 80 ;
server_name kisspromotions.flowzqa.tk www.kisspromotions.flowzqa.tk;
root /var/www/html/websites/5ad70d44e4159e0015001d73/dc8d452ebf1f4ee1934ae9c16be88a79/public/;
index index.html;
location / {
try_files $uri $uri/ =404;
}
#static file 404's aren't logged and expires header is set to
#maximum age
location ~* \.(jpg|jpeg|gif|css|png|js|ico|html)$ {
access_log off;
expires 30d;
}
}
server {
listen 80 ;
server_name base.flowzqa.tk www.base.flowzqa.tk;
root /var/www/html/websites/5ac5ee652132ec0013791fd7/02cccd8bdecf45aaa102fefdc2c76d4c/public/;
index index.html;
location / {
try_files $uri $uri/ =404;
}
#static file 404's aren't logged and expires header is set to
#maximum age
location ~* \.(jpg|jpeg|gif|css|png|js|ico|html)$ {
access_log off;
expires 30d;
}
}