add example apache2 config file for rest_api
This commit is contained in:
parent
cd0d39ee5e
commit
f458ee8fda
1 changed files with 20 additions and 0 deletions
20
docs/rest_api/apache2
Normal file
20
docs/rest_api/apache2
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
# run the bellow command (as root) prior
|
||||||
|
# $ a2enmod ssl proxy proxy_http
|
||||||
|
|
||||||
|
LoadModule ssl_module modules/mod_ssl.so
|
||||||
|
LoadModule proxy_module modules/mod_proxy.so
|
||||||
|
LoadModule proxy_http_module modules/mod_proxy_http.so
|
||||||
|
|
||||||
|
Listen 5000
|
||||||
|
<VirtualHost *:5000>
|
||||||
|
ServerName example.com
|
||||||
|
|
||||||
|
SSLEngine on
|
||||||
|
SSLCertificateFile "/etc/letsencrypt/live/example.com/fullchain.pem"
|
||||||
|
SSLCertificateKeyFile "/etc/letsencrypt/live/example.com/privkey.pem"
|
||||||
|
|
||||||
|
ProxyRequests off
|
||||||
|
ProxyPass / http://[::1]:5001/
|
||||||
|
ProxyPassReverse / http://[::1]:5001
|
||||||
|
ProxyPreserveHost on
|
||||||
|
</VirtualHost>
|
Loading…
Reference in a new issue