You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sur l'instance du PNR du Haut-Jura de @thomaspnrhj, nous avions des problème de CORS et de requêtes multi-origines côté Georiviere-public.
J'ai donc modifié la conf nginx par défaut en m'inspirant de celle de Geotrek-admin.
Pouvez-vous contrôler/corriger les adaptations ci-dessous (blocs ou lignes commentés # Fix CORS) afin de les intégrer dans la conf Nginx par défaut de Georiviere-admin ?
Merci !
upstream django {
server web:8000;
}
# Fix CORS
map $http_origin $allow_origin {
"~*" $http_origin;
default "";
}
server {
listen 80;
client_max_body_size 10M;
location / {
proxy_pass http://django;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; # Fix CORS
proxy_redirect off;
proxy_ssl_server_name on; # Fix CORS
keepalive_timeout 0; # Fix CORS
# Fix CORS
location ~ ^/api {
proxy_pass http://django;
proxy_read_timeout 300s;
add_header Access-Control-Allow-Origin $allow_origin;
}
}
location /static/ {
alias /var/www/static/;
}
location /media/ {
alias /var/www/media/;
add_header Access-Control-Allow-Origin $allow_origin; # Fix CORS
}
}
The text was updated successfully, but these errors were encountered:
Salut,
Sur l'instance du PNR du Haut-Jura de @thomaspnrhj, nous avions des problème de CORS et de requêtes multi-origines côté Georiviere-public.
J'ai donc modifié la conf nginx par défaut en m'inspirant de celle de Geotrek-admin.
Pouvez-vous contrôler/corriger les adaptations ci-dessous (blocs ou lignes commentés # Fix CORS) afin de les intégrer dans la conf Nginx par défaut de Georiviere-admin ?
Merci !
The text was updated successfully, but these errors were encountered: