-
Notifications
You must be signed in to change notification settings - Fork 41
Server Serve
Depado edited this page Feb 9, 2018
·
2 revisions
up.example.com {
proxy / 127.0.0.1:8002 {
transparent
}
gzip
}
<VirtualHost *:80>
ServerName up.example.com
DocumentRoot /data/goploader-server
<Directory /data/goploader-server>
Require all granted
</Directory>
ProxyPass / "http://localhost:8080/"
ProxyPassReverse / "http://localhost:8080/"
LogLevel warn
ErrorLog /data/logs/apache2/goploader.log
CustomLog /var/log/apache2/goploader.log combined
</VirtualHost>