-
Notifications
You must be signed in to change notification settings - Fork 0
/
dev-mastodonti-co
78 lines (61 loc) · 1.91 KB
/
dev-mastodonti-co
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
## DEVELOPMENT
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
server {
listen 80;
listen [::]:80;
server_name dev.mastodonti.co www.dev.mastodonti.co;
root /srv/http/dev_mastodontico/public;
return 301 https://dev.mastodonti.co$request_uri;
}
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name www.dev.mastodonti.co;
include snippets/ssl-best.conf;
ssl_certificate /etc/letsencrypt/live/dev.mastodonti.co/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/dev.mastodonti.co/privkey.pem;
root /docker/mastodon/mastodon-dev/public;
return 301 https://dev.mastodonti.co$request_uri;
}
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name dev.mastodonti.co;
include snippets/ssl-best.conf;
ssl_certificate /etc/letsencrypt/live/dev.mastodonti.co/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/dev.mastodonti.co/privkey.pem;
keepalive_timeout 70;
sendfile on;
client_max_body_size 0;
root /docker/mastodon/mastodon-dev/public;
gzip on;
gzip_vary on;
gzip_proxied any;
gzip_comp_level 6;
gzip_buffers 16 8k;
gzip_http_version 1.1;
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
add_header Content-Security-Policy "script-src 'self'; object-src 'self'; frame-ancestors 'self'";
location / {
try_files $uri @proxy;
}
location @proxy {
include snippets/reverse-proxy.conf;
proxy_pass http://127.0.0.1:10005;
tcp_nodelay on;
}
location /api/v1/streaming {
include snippets/reverse-proxy.conf;
proxy_pass http://127.0.0.1:10006;
proxy_buffering off;
proxy_redirect off;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
tcp_nodelay on;
}
error_page 500 501 502 503 504 /500.html;
}