mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-06 22:40:26 -05:00
17 lines
535 B
Text
17 lines
535 B
Text
|
ServerName localhost:80
|
||
|
ServerAdmin admin@localhost
|
||
|
|
||
|
<VirtualHost *:80>
|
||
|
ServerName localhost
|
||
|
<Proxy *>
|
||
|
Allow from localhost
|
||
|
</Proxy>
|
||
|
SSLProxyEngine On
|
||
|
ProxyRequests Off
|
||
|
ProxyPreserveHost On
|
||
|
AllowEncodedSlashes NoDecode
|
||
|
ProxyPass / http://verdaccio:4873/ nocanon
|
||
|
ProxyPassReverse / http://verdaccio:4873/
|
||
|
CustomLog /var/log/apache2/verdaccio-access.log combined
|
||
|
ErrorLog /var/log/apache2/verdaccio-error.log
|
||
|
</VirtualHost>
|