Add oauth2-proxy #24

Closed
lukas wants to merge 5 commits from oauth2_proxy into main
3 changed files with 6 additions and 4 deletions
Showing only changes of commit dc660ed957 - Show all commits

View File

@ -3,3 +3,4 @@
roles:
- nginx
- jellyfin
- oauth2proxy

View File

@ -18,9 +18,9 @@
networks:
- name: bridge
- name: nginx-internal
command: '/bin/oauth2-proxy --config=/etc/oauth-proxy.cfg'
command: '/bin/oauth2-proxy --config=/etc/oauth2-proxy.cfg'
volumes:
- "{{ data_folder }}/oauth2-proxy/oauth-proxy.cfg:/etc/oauth-proxy.cfg"
- "{{ data_folder }}/oauth2-proxy/oauth2-proxy.cfg:/etc/oauth2-proxy.cfg"
ports:
- "4180:4180"
- name: copy oauth2-proxy nginx config

View File

@ -1,10 +1,11 @@
server {
listen 443 default ssl;
server_name auth.dev.local;
server_name "auth.{{ base_domain }}";
add_header Strict-Transport-Security max-age=2592000;
set $oauth2proxy oauth2-proxy;
location / {
proxy_pass http://127.0.0.1:4180;
proxy_pass http://$oauth2proxy:4180;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Scheme $scheme;