####### Apache ####### Redirct all HTTP to HTTPS =========================== .. code-block:: bash RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} * or .. code-block:: bash RedirectMatch ^/(.*)$ https://$SERVER_HOST/$1 New allow all ============= .. code:: bash AllowOverride All Require all granted Run in foreground ================== .. code-block:: bash LogLevel info ErrorLog "|cat" LogFormat "%h %l %u %t \"%r\" %>s %b" common CustomLog "|cat" common Serve Django or WSGI app ======================== * install mod_wsgi .. code-block:: bash ServerName my-cool-webserver WSGIDaemonProcess $APPNAME user=$UNIX_USER group=$UNIX_GROUP threads=42 WSGIScriptAlias / /path/to/run.wsgi WSGIProcessGroup $UNIX_GROUP WSGIApplicationGroup %{GLOBAL}