aboutsummaryrefslogtreecommitdiff
path: root/app/jitsi/config
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2021-02-01 12:42:29 +0100
committerQuentin Dufour <quentin@deuxfleurs.fr>2021-02-01 12:42:29 +0100
commit5fb05f0b7ea4dfd12fd1bbc077bb6d6a972fa480 (patch)
tree2224399ead3064570726566f2296c489388e4d68 /app/jitsi/config
parent5babe6fad15b5549788cb9f872da7a9565116101 (diff)
downloadinfrastructure-5fb05f0b7ea4dfd12fd1bbc077bb6d6a972fa480.tar.gz
infrastructure-5fb05f0b7ea4dfd12fd1bbc077bb6d6a972fa480.zip
Add CORS for our load testing frontend
Diffstat (limited to 'app/jitsi/config')
-rw-r--r--app/jitsi/config/nginx.conf4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/jitsi/config/nginx.conf b/app/jitsi/config/nginx.conf
index 2795644..12cca4a 100644
--- a/app/jitsi/config/nginx.conf
+++ b/app/jitsi/config/nginx.conf
@@ -32,6 +32,10 @@ http {
}
location /http-bind {
+ # We add CORS to use a different frontend which is useful for load testing as we do not want to advertise too much our URL
+ add_header 'Access-Control-Allow-Headers' 'content-type';
+ add_header 'Access-Control-Allow-Methods' 'GET,POST,PUT,DELETE,OPTIONS';
+ add_header 'Access-Control-Allow-Origin' '*';
proxy_pass http://{{ env "NOMAD_ADDR_bosh_port" }}/http-bind;
proxy_set_header X-Forwarded-For \$remote_addr;
proxy_set_header Host \$http_host;