diff --git a/apache.conf b/apache.conf new file mode 100644 index 0000000000000000000000000000000000000000..ed9154cc74e9425b92e301c74d3bf158f01b2446 --- /dev/null +++ b/apache.conf @@ -0,0 +1,18 @@ +<VirtualHost *:80> + ServerName srv1-signer.<domain> + ServerAlias signer.<domain> + ServerAdmin webmaster@localhost + DocumentRoot /var/www/html + AllowEncodedSlashes NoDecode + ProxyPass "/" "http://127.0.0.1:5001/" nocanon + ProxyPassReverse "/" "http://127.0.0.1:5001/" +</VirtualHost> +<VirtualHost *:80> + ServerName srv1-proxy.<domain> + ServerAlias proxy.<domain> + ServerAdmin webmaster@localhost + DocumentRoot /var/www/html + AllowEncodedSlashes NoDecode + ProxyPass "/" "http://127.0.0.1:5002/" nocanon + ProxyPassReverse "/" "http://127.0.0.1:5002/" +</VirtualHost>