-
Notifications
You must be signed in to change notification settings - Fork 0
/
nginx.conf
54 lines (44 loc) · 1.36 KB
/
nginx.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
worker_processes 1;
error_log stderr;
pid nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3;
ssl_prefer_server_ciphers on;
access_log access.log;
server {
listen 8443 ssl;
server_name $HOST_DOMAIN;
ssl_certificate /app/certs/selfsigned.crt;
ssl_certificate_key /app/certs/selfsigned.key;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers HIGH:!aNULL:!MD5;
access_log /proc/1/fd/1;
error_page 497 https://$server_name:$server_port$request_uri;
location ~ ^/(static/favicon.svg|static/favicon.png) {
root /app;
access_log off;
log_not_found off;
}
location /static/ {
root /app;
}
location / {
set $APP http://127.0.0.1:8000;
proxy_set_header Host $http_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_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_pass $APP;
}
}
}