No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

etc_apache2_sites-available_newebe.j2 433B

1234567891011121314151617181920
  1. <VirtualHost *:80>
  2. ServerName {{ newebe_domain }}
  3. Redirect permanent / https://{{ newebe_domain }}/
  4. </VirtualHost>
  5. <VirtualHost *:443>
  6. ServerName {{ newebe_domain }}
  7. Include /etc/apache2/ssl.conf
  8. ErrorLog /var/log/apache2/newebe.info-error_log
  9. CustomLog /var/log/apache2/newebe.info-access_log common
  10. ProxyPass / http://127.0.0.1:8282/
  11. ProxyPassReverse / http://127.0.0.1:8282/
  12. </VirtualHost>