Guest User

Untitled

a guest
Sep 21st, 2020
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. <IfModule mod_ssl.c>
  2. <VirtualHost *:443>
  3. ServerName acceptatie.mijndoelgroep.nl
  4. ServerAlias www.acceptatie.mijndoelgroep.nl
  5. ErrorDocument 503 /var/www/html/error/503.html
  6. LimitRequestFieldSize 16384
  7. RewriteEngine On
  8. RewriteCond %{REQUEST_URI} ^/(data-api|users/api|phpmyadmin)
  9. RewriteRule (.*) http://%{SERVER_NAME}$1 [L,R=302]
  10. ProxyPass /users/web http://127.0.0.1:18080
  11. ProxyPassReverse /users/web http://127.0.0.1:18080
  12. ProxyPass / http://127.0.0.1:15000/
  13. ProxyPassReverse / http://127.0.0.1:15000/
  14. ProxyTimeout 1200
  15. Include /opt/inovacio/ssl/enable_ssl.conf
  16. SSLCertificateFile /etc/letsencrypt/live/acceptatie.mijndoelgroep.nl/fullchain.pem
  17. SSLCertificateKeyFile /etc/letsencrypt/live/acceptatie.mijndoelgroep.nl/privkey.pem
  18. Include /etc/letsencrypt/options-ssl-apache.conf
  19. </VirtualHost>
  20. </IfModule>
  21.  
Add Comment
Please, Sign In to add comment