Skip to content
This repository has been archived by the owner on Aug 6, 2023. It is now read-only.

LoopDetection->ProcessLoopDetectionPreviousConnectionFailed() #295

Open
killmasta93 opened this issue Sep 3, 2018 · 0 comments
Open

LoopDetection->ProcessLoopDetectionPreviousConnectionFailed() #295

killmasta93 opened this issue Sep 3, 2018 · 0 comments

Comments

@killmasta93
Copy link

killmasta93 commented Sep 3, 2018

Hi,
I was wondering if someone could assist on the issue im having, trying to connect after configuring and getting this issue
LoopDetection->ProcessLoopDetectionPreviousConnectionFailed(): Command 'Provision' at 03/09/2018 03:05:41 with pid '1034' terminated unexpectedly or is still running. 03/09/2018 03:05:42 [ 1034] [ERROR] [sistemas] Please check your logs for this PID and errors like PHP-Fatals or Apache segmentation faults and report your results to the Z-Push dev team.
currently running nginx

` server {
listen 443;
server_name mail.mydomain.com;

ssl on;
ssl_certificate         /etc/letsencrypt/live/mail.mydomain.com/fullchain.pem;
ssl_certificate_key     /etc/letsencrypt/live/mail.mydomain.com/privkey.pem;

root    /usr/share/www;
index   index.php;

error_log /var/log/nginx/zpush-error.log;
access_log /var/log/nginx/zpush-access.log;

location / {
    try_files $uri $uri/ index.php;
}

location /Microsoft-Server-ActiveSync {
    rewrite ^(.*)$  /index.php last;
}

location ~* /AutoDiscover/AutoDiscover.xml {
    alias       /usr/share/www/autodiscover/autodiscover.php;
}

location ~ .php$ {
    include /etc/nginx/fastcgi_params;
    fastcgi_index index.php;
    fastcgi_param HTTPS on;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    fastcgi_pass unix:/var/run/php5-fpm.sock;
    # Z-Push Ping command will be alive for 470s, but be safe
    fastcgi_read_timeout 630;
}

} `

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant