🎉(all) bootstrap the Calendars project
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!
This commit is contained in:
15
docker/files/etc/nginx/conf.d/default.conf
Normal file
15
docker/files/etc/nginx/conf.d/default.conf
Normal file
@@ -0,0 +1,15 @@
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user