-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathakashic.conf
34 lines (32 loc) · 1.19 KB
/
akashic.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
server {
# listen -> 포트 80번으로 설정 (default)
listen 80;
# reverse proxy를 위한 서버 주소
server_name 127.0.0.1 localhost 172.25.147.9;
# http://127.0.0.1/chat 의 경우
location /chat {
# proxy 헤더 설정
proxy_http_version 1.1;
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 $http_x_forwarded_proto;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_set_header Content-Type $content_type;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
# 프록시 할 주소, django -> 서비스명, 8080 -> 8080번 포트로 프록시
proxy_pass http://django:8080;
}
# http://127.0.0.1/ 의 경우
location / {
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 $http_x_forwarded_proto;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_set_header Content-Type $content_type;
# 프록시 할 주소, django -> 서비스명, 8000 -> 8000번 포트로 프록시
proxy_pass http://django:8000;
}
}