summaryrefslogtreecommitdiff
path: root/apache2/sites-available/django.secure-example.com.conf
diff options
context:
space:
mode:
Diffstat (limited to 'apache2/sites-available/django.secure-example.com.conf')
-rw-r--r--apache2/sites-available/django.secure-example.com.conf27
1 files changed, 27 insertions, 0 deletions
diff --git a/apache2/sites-available/django.secure-example.com.conf b/apache2/sites-available/django.secure-example.com.conf
new file mode 100644
index 0000000..5424420
--- /dev/null
+++ b/apache2/sites-available/django.secure-example.com.conf
@@ -0,0 +1,27 @@
+<VirtualHost *:443>
+ ServerName django.example.com
+ ServerAdmin webmaster@example.com
+ DocumentRoot /var/www/nowhere
+
+ Include conf.d/local-ssl.conf
+
+ <Location />
+ SetHandler uwsgi-handler
+ uWSGISocket /run/uwsgi/app/local-django-app/socket
+ uWSGImaxVars 512
+ </Location>
+
+ ErrorLog ${APACHE_LOG_DIR}/django.example.com-error.log
+ CustomLog ${APACHE_LOG_DIR}/django.example.com-access.log combined
+</VirtualHost>
+<VirtualHost *:80>
+ ServerName django.example.com
+ ServerAlias *.django.example.com
+
+ Include conf.d/local-log-origin.conf
+
+ RedirectMatch permanent .* https://django.example.com/
+
+ ErrorLog ${APACHE_LOG_DIR}/django.example.com-error.log
+ CustomLog ${APACHE_LOG_DIR}/django.example.com-access.log origin
+</VirtualHost>