Skip to content

readme: Update proxy_pass URLs for taiga-front and taiga-events #118

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -476,20 +476,20 @@ If Taiga is being served in a **subdomain**:
```
server {
server_name taiga.mycompany.com;

location / {
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Scheme $scheme;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_redirect off;
proxy_pass http://localhost:9000/;
proxy_pass http://taiga-front/;
}

# Events
location /events {
proxy_pass http://localhost:9000/events;
proxy_pass http://taiga-events:8888/events;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
Expand All @@ -498,7 +498,7 @@ If Taiga is being served in a **subdomain**:
proxy_send_timeout 7d;
proxy_read_timeout 7d;
}

# TLS: Configure your TLS following the best practices inside your company
# Logs and other configurations
}
Expand All @@ -508,20 +508,20 @@ If Taiga is being served in a **subpath** instead of a subdomain, the configurat
```
server {
server_name mycompany.com;

location /taiga/ {
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Scheme $scheme;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_redirect off;
proxy_pass http://localhost:9000/;
proxy_pass http://taiga-front/;
}

# Events
location /taiga/events {
proxy_pass http://localhost:9000/events;
proxy_pass http://taiga-events:8888/events;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
Expand All @@ -530,7 +530,7 @@ server {
proxy_send_timeout 7d;
proxy_read_timeout 7d;
}

# TLS: Configure your TLS following the best practices inside your company
# Logs and other configurations
}
Expand Down