mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 17:59:47 +02:00
17 lines
436 B
Text
17 lines
436 B
Text
<VirtualHost *:80>
|
|
ServerName registry.gitlab.eu
|
|
ServerAdmin info@gitlab.eu
|
|
|
|
PassengerEnabled on
|
|
RailsEnv production
|
|
DocumentRoot /home/app/registry/current/public
|
|
|
|
ErrorLog /var/log/apache2/registry.error.log
|
|
LogLevel info ssl:warn
|
|
CustomLog /var/log/apache2/registry.access.log combined
|
|
|
|
<Directory /home/app/registry/current/public>
|
|
Require all granted
|
|
Options -MultiViews
|
|
</Directory>
|
|
</VirtualHost>
|