|
| 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