Crivaledaz / Mattermost-LDAP

This module provides an external LDAP authentication in Mattermost for the Team Edition (free).
MIT License
357 stars 71 forks source link

Insted run php Nginx download it #109

Open RaditzCosplay opened 11 months ago

RaditzCosplay commented 11 months ago

Good day.

i have a problem. after i push GilHub button mattermost download authorize.php script instead run it. Theare my nginx conf

upstream backend { server 127.0.0.1; keepalive 32; }

proxy_cache_path /var/cache/nginx levels=1:2 keys_zone=mattermost_cache:10m max_size=3g inactive=120m use_temp_path=off;

server { listen 80 default_server; server_name mattermos.com; root /var/www/html; index index.php index.html index.htm;

location ~ /api/v[0-9]+/(users/)?websocket$ {
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";
    client_max_body_size 50M;
    proxy_set_header Host $http_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;
    proxy_set_header X-Frame-Options SAMEORIGIN;
    proxy_buffers 256 16k;
    proxy_buffer_size 16k;
    client_body_timeout 60;
    send_timeout 300;
    lingering_timeout 5;
    proxy_connect_timeout 90;
    proxy_send_timeout 300;
    proxy_read_timeout 90s;
    proxy_pass http://backend;
}

}

UAnton commented 10 months ago

Any news? Project dead?

GloriamSemper commented 6 months ago

Works fine for me after a few tweaks: https://github.com/Crivaledaz/Mattermost-LDAP/issues/113