Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ server {
add_header X-XSS-Protection "1; mode=block" always;

# Backend service
# The /.well-known/ path is for OIDC discovery
location ~ ^/(api|\.well-known)/.*$ {
proxy_pass http://localhost:3001;
proxy_set_header Host $host;
Expand Down Expand Up @@ -198,7 +199,7 @@ If you need to use custom ports for Rybbit:
Update your Nginx configuration accordingly:

```nginx
location /api/ {
location ~ ^/(api|\.well-known)/.*$ {
proxy_pass http://localhost:8080; # Custom backend port
# ... rest of config
}
Expand Down