Hi, I have an apache web server. I would like syncthing in a subdomain like syncthing.mydomain.com. Syncthing is running and I can access to gui from lan at 192.168.x.x:8384. When I try to connect to syncthing.mydomain.com the browser show me this message: “Service Unavailable. The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.” This is my config of the virtual host in apache but I cant connect from internet. Firewall and nat are correctly setted.
<VirtualHost *:80>
RewriteEngine On
ProxyRequests Off
ProxyPreserveHost On
ServerName syncthing.mydomain.com
<Proxy *>
Require all granted
</Proxy>
ProxyPass "/" "http://localhost:8384/" connectiontimeout=5 timeout=30 keepalive=on
ProxyPassReverse "/" "http://localhost:8384/"
ErrorLog ${APACHE_LOG_DIR}/syncthing-error.log
CustomLog ${APACHE_LOG_DIR}/syncthing-access.log combined
Thanks for help and sorry for my bad english
23 posts - 3 participants