Live Helper Chat support forum.. Forum is locked. New place for questions - Github Discussions
You are not logged in.
Pages: 1
I have succesfully installed LHC, but when I try to log in, I got redirect loop on dashboard.
When I try different page, like configuration, everything is fine.
My server is nginx on debian.
Here is my configuration on nginx:
server {
listen *:80;
listen *:443 ssl;
ssl on;
ssl_certificate /usr/share/nginx/www/core/cert/xxxxxxxxxxx.crt;
ssl_certificate_key /usr/share/nginx/www/core/cert/xxxxxxxxxxx.key;
ssl_protocols TLSv1.2 TLSv1.1 TLSv1 SSLv2;
server_name lhc.mysite.com;
root /usr/share/nginx/chat;
index index.html index.htm index.php;
charset utf-8;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
sendfile off;
client_max_body_size 100m;
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_intercept_errors off;
}
location ~ /\.ht {
deny all;
}
}
All directories are readable and I had yes on everything in installation.
Thanks for help
Last edited by Tawre (2015-09-04 16:10:47)
Offline
Hi,
I'm afraid it's just to hard to tell what's causing this redirection.
Offline
Solved by reinstalling it like 3 times. Now I just hope it'll work in long term.
Thanks for trying to help me
Offline
Pages: 1