Skip to content

Commit 7421b84

Browse files
committed
add nginx config
1 parent 56b25a4 commit 7421b84

File tree

2 files changed

+54
-3
lines changed

2 files changed

+54
-3
lines changed

docker-compose.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ services:
44
image: spotify-github-profile
55
build:
66
dockerfile: Dockerfile
7-
#restart: always
7+
restart: always
88
env_file: .env
99
environment:
1010
PYTHONUNBUFFERED: 1
@@ -16,7 +16,7 @@ services:
1616

1717
login:
1818
image: spotify-github-profile
19-
#restart: always
19+
restart: always
2020
env_file: .env
2121
environment:
2222
PYTHONUNBUFFERED: 1
@@ -28,7 +28,7 @@ services:
2828

2929
callback:
3030
image: spotify-github-profile
31-
#restart: always
31+
restart: always
3232
env_file: .env
3333
environment:
3434
PYTHONUNBUFFERED: 1

etc/nginx.conf

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
server {
2+
3+
listen 80;
4+
server_name spotify-github-profile.kittinanx.com;
5+
charset utf-8;
6+
7+
access_log /var/log/nginx/spotify_access.log;
8+
error_log /var/log/nginx/spotify_error.log;
9+
10+
client_max_body_size 2M;
11+
proxy_read_timeout 60;
12+
proxy_connect_timeout 60;
13+
proxy_send_timeout 60;
14+
15+
location /api/login {
16+
proxy_pass http://localhost:5001;
17+
proxy_set_header X-Forwarded-For $remote_addr;
18+
proxy_set_header X-Forwarded-Host $host;
19+
proxy_set_header X-Forwarded-Server $host;
20+
proxy_set_header X-Forwarded-Proto $scheme;
21+
}
22+
23+
location /api/callback {
24+
proxy_pass http://localhost:5002;
25+
proxy_set_header X-Forwarded-For $remote_addr;
26+
proxy_set_header X-Forwarded-Host $host;
27+
proxy_set_header X-Forwarded-Server $host;
28+
proxy_set_header X-Forwarded-Proto $scheme;
29+
}
30+
31+
location /api/view {
32+
proxy_pass http://localhost:5003;
33+
proxy_set_header X-Forwarded-For $remote_addr;
34+
proxy_set_header X-Forwarded-Host $host;
35+
proxy_set_header X-Forwarded-Server $host;
36+
proxy_set_header X-Forwarded-Proto $scheme;
37+
}
38+
39+
location /api/view.svg {
40+
proxy_pass http://localhost:5003;
41+
proxy_set_header X-Forwarded-For $remote_addr;
42+
proxy_set_header X-Forwarded-Host $host;
43+
proxy_set_header X-Forwarded-Server $host;
44+
proxy_set_header X-Forwarded-Proto $scheme;
45+
}
46+
47+
# Redirect / to /api/login
48+
location = / {
49+
return 301 /api/login;
50+
}
51+
}

0 commit comments

Comments
 (0)