This repository was forked from Drive in late December 2025 and boostraped as a minimal demo of backend+caldav server+frontend integration. There is much left to do and to fix!
16 lines
387 B
Plaintext
16 lines
387 B
Plaintext
|
|
server {
|
|
listen 8923;
|
|
server_name localhost;
|
|
charset utf-8;
|
|
|
|
# Keycloak - all auth-related paths
|
|
location / {
|
|
proxy_pass http://keycloak:8080;
|
|
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-Proto $scheme;
|
|
}
|
|
}
|