15 lines
442 B
Text
15 lines
442 B
Text
<VirtualHost *:80>
|
|
ServerName gitlab-dev.cloud.fedoraproject.org
|
|
|
|
# Uncomment if you want redirect from HTTP to HTTPS
|
|
#RewriteEngine on
|
|
#RewriteCond %{SERVER_PORT} ^80$
|
|
#RewriteRule ^(.*)$ https://%{SERVER_NAME}$1 [L,R]
|
|
|
|
ProxyPass / http://127.0.0.1:3000/
|
|
ProxyPassReverse / http://127.0.0.1:3000/
|
|
ProxyPreserveHost On
|
|
|
|
#CustomLog logs/httpd/gitlab-access.log combined
|
|
#ErrorLog logs/httpd/gitlab-error.log
|
|
</VirtualHost>
|