-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlaboutik.conf
More file actions
43 lines (36 loc) · 1.24 KB
/
laboutik.conf
File metadata and controls
43 lines (36 loc) · 1.24 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
server {
listen 80;
server_name localhost;
access_log /DjangoFiles/logs/nginxAccess.log;
error_log /DjangoFiles/logs/nginxError.log;
# Static and media géré par Nginx :
location /static {
root /DjangoFiles/www;
}
location /media {
root /DjangoFiles/www;
}
# Configuration spécifique pour les WebSockets
location ~ ^/(wss|ws)/ {
proxy_pass http://laboutik_django:8001; # 8001 fait tourner Daphne
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
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-Host $server_name;
# WebSocket timeout settings
proxy_read_timeout 3600s;
proxy_send_timeout 3600s;
proxy_connect_timeout 3600s;
}
location / {
# everything is passed to Gunicorn/Django
proxy_pass http://laboutik_django:8000;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_redirect off;
}
}