Hello,
I've just setup a new Mattermost 3.1.0 install on a Debian Wheezy server sitting behind NGINX and using MySQL 5.6. The install and setup where quick and easy. Site came up fine and appeared to work. However, I've noticed that I get timeouts in the browser when I try and post a message to a channel. I don't see the blue bar at the top, but to the far right of the message the little wavy blue lines show and the message doesn't show posted. If you refresh the page, it's there.
I've followed the install instructions for Ubuntu, and my Nginx config is what is recommended. I don't see any errors in the Mattermost log file or the Nginx logs. I'm not exactly sure what is going on or where to even troubleshoot without logs showing anything. Here is my Nginx config just in case that is useful.
Can anyone offer some suggestions? Thanks
server {
listen 443 ssl;
server_name chat.example.com;
keepalive_timeout 10;
ssl on;
ssl_certificate /etc/ssl/localcerts/STAR_example.com.crt;
ssl_certificate_key /etc/ssl/localcerts/STAR_example.com.key;
ssl_session_timeout 5m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers 'EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH';
ssl_prefer_server_ciphers on;
ssl_session_cache shared:SSL:10m;
location / {
gzip off;
proxy_set_header X-Forwarded-Ssl on;
client_max_body_size 50M;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
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_pass http://127.0.0.1:8065;
}
}