0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-04-01 02:42:23 -05:00

Apache reverse proxy configuration

This commit is contained in:
Piotr Synowiec 2017-05-20 19:44:41 +02:00
parent 1bdb651636
commit bf8c018fc5

View file

@ -65,3 +65,26 @@ The locations may vary depending on your server setup. If you want to know where
$ which forever
$ which verdaccio
```
## Apache reverse proxy configuration
config.yaml
```yaml
url_prefix: https://npm.your.domain.com
```
Apache virtual server configuration
```apacheconfig
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerName npm.your.domain.com
SSLEngine on
SSLCertificateFile /etc/letsencrypt/live/npm.your.domain.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/npm.your.domain.com/privkey.pem
SSLProxyEngine On
ProxyRequests Off
ProxyPreserveHost On
AllowEncodedSlashes NoDecode
ProxyPass / http://localhost:4873/ nocanon
ProxyPassReverse / http://localhost:4873/
</VirtualHost>
</IfModule>
```