I did install GitLab on my Apache server using this script https://github.com/gitlabhq/gitlabhq/issues/3626 and I configured Apache to forward everything incoming on port 8080 to port 3000 like this:
<VirtualHost *80>
ProxyPass / http://127.0.0.1:3000/
ProxyPassReverse / http://127.0.0.1:3000/
ProxyPreserveHost On
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
Allow Override
</Directory>
.
.
.
</VirtualHost>
However I would like to forward everything only for a particular website I host on this webserver. Can this be done?
I'm quite new into these things, if something is not clear, please ask.