-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.conf
39 lines (29 loc) · 977 Bytes
/
default.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
server {
listen 80;
listen [::]:80;
server_name code-web-editor.online www.code-web-editor.online;
location /.well-known/acme-challenge/ {
root /var/www/certbot;
}
location / {
return 301 https://$host$request_uri;
}
}
server {
listen 443 ssl;
server_name code-web-editor.online www.code-web-editor.online;
ssl_certificate /etc/letsencrypt/live/code-web-editor.online/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/code-web-editor.online/privkey.pem;
include /etc/letsencrypt/options-ssl-nginx.conf;
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
location / {
add_header 'Cross-Origin-Opener-Policy' 'same-origin';
add_header 'Cross-Origin-Embedder-Policy' 'credentialless';
root /usr/share/nginx/html;
try_files $uri$args $uri$args/ /index.html;
}
location /api {
proxy_pass http://api:3333/api;
proxy_redirect default;
}
}