CSRF Error with apache proxy setup

Hello,

I am having trouble with CSRF Errors immediately after authentication resuting in a not usable web UI.

I am running syncthing behind an apache proxy (a setup which used to work a while ago, dunno how long it’s not working anymore).

System Debian 8 64bit Apache 2.4.10 syncthing v0.14.5 “Dysprosium Dragonfly” (go1.7 linux-amd64) jenkins@build.syncthing.net 2016-08-23 08:42:09 UTC

apache

<VirtualHost *:80>
        ServerName syncthing.domain.net 
        Redirect permanent / https://syncthing.domain.net
</VirtualHost>

<VirtualHost *:443>
        ServerName syncthing.domain.net

        SSLEngine on
        SSLCertificateFile     /...
        SSLCertificateKeyFile  /...

        ProxyPass / http://127.0.0.1:8384/ connectiontimeout=300 timeout=300
        ProxyPassReverse / http://127.0.0.1:8384/

        CustomLog /var/log/apache2/syncthing-access.log combined
        ErrorLog /var/log/apache2/syncthing-error.log

</VirtualHost>

syncthing config

<gui enabled="true" tls="false" debugging="false">
        <address>127.0.0.1:8384</address>
        <user>bla</user>
        <password>....</password>
        <apikey>....</apikey>
        <theme>dark</theme>
</gui>

Thanks for any advice

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.