-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathluckperms.conf.template
48 lines (39 loc) · 1.03 KB
/
luckperms.conf.template
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
# web
server {
listen 80;
server_name ${WEB_DOMAIN};
location / {
root /var/www/html;
try_files $uri $uri/ /index.html;
index index.html;
}
}
# bytebin
server {
listen 80;
server_name ${BYTEBIN_DOMAIN};
client_max_body_size 30M;
client_body_timeout 60s;
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass ${BYTEBIN_PROXY_URL};
}
}
# spark-viewer
server {
listen 80;
server_name ${SPARK_DOMAIN};
client_max_body_size 30M;
client_body_timeout 60s;
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header x-bytebin-url ${BYTEBIN_ACCESS_URL};
proxy_pass ${SPARK_PROXY_URL};
}
}