mirror of
https://github.com/kirsle/kirsle.net
synced 2024-12-22 06:59:29 +00:00
Add Apache configuration for kirsle.net
This commit is contained in:
parent
7ff5f5c7e1
commit
d93ae6cfec
49
apache.conf
Normal file
49
apache.conf
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
## SSL main site www.kirsle.net
|
||||||
|
<VirtualHost *:443>
|
||||||
|
ServerName www.kirsle.net
|
||||||
|
WSGIDaemonProcess kirsle user=kirsle group=kirsle threads=5 home=/home/kirsle/git/rophako
|
||||||
|
WSGIScriptAlias / /home/kirsle/git/rophako/app.wsgi
|
||||||
|
WSGIScriptReloading On
|
||||||
|
CustomLog /home/kirsle/logs/access_log combined
|
||||||
|
ErrorLog /home/kirsle/logs/error_log
|
||||||
|
SuexecUserGroup kirsle kirsle
|
||||||
|
|
||||||
|
# SSL
|
||||||
|
SSLEngine on
|
||||||
|
SSLCertificateChainFile /etc/ssl/kirsle.net/smtpd.pem
|
||||||
|
SSLCertificateFile /etc/ssl/kirsle.net/www_kirsle_net.crt
|
||||||
|
SSLCertificateKeyFile /etc/ssl/kirsle.net/kirsle.key
|
||||||
|
|
||||||
|
SSLOptions +StdEnvVars
|
||||||
|
BrowserMatch "MSIE [2-6]" \
|
||||||
|
nokeepalive ssl-unclean-shutdown \
|
||||||
|
downgrade-1.0 force-response-1.0
|
||||||
|
BrowserMatch "MSIE [17-9]" ssl-unclean-shutdown
|
||||||
|
|
||||||
|
<Directory "/home/kirsle/git/rophako">
|
||||||
|
WSGIProcessGroup kirsle
|
||||||
|
WSGIApplicationGroup %{GLOBAL}
|
||||||
|
Order allow,deny
|
||||||
|
Allow from all
|
||||||
|
</Directory>
|
||||||
|
|
||||||
|
# Static file aliases.
|
||||||
|
Alias /favicon.ico /home/kirsle/www/favicon.ico
|
||||||
|
Alias /robots.txt /home/kirsle/www/robots.txt
|
||||||
|
Alias /creativity/ /home/kirsle/www/creativity/
|
||||||
|
Alias /doc/ /home/kirsle/www/doc/
|
||||||
|
Alias /images/ /home/kirsle/www/images/
|
||||||
|
Alias /mail/ /home/kirsle/www/mail/
|
||||||
|
Alias /piwik/ /home/kirsle/www/piwik/
|
||||||
|
Alias /projects/ /home/kirsle/www/projects/
|
||||||
|
Alias /static/ /home/kirsle/www/static/
|
||||||
|
Alias /wizards/ /home/kirsle/www/wizards/
|
||||||
|
|
||||||
|
# Legacy static files root
|
||||||
|
<Directory "/home/kirsle/www">
|
||||||
|
Options Indexes FollowSymLinks ExecCGI
|
||||||
|
AllowOverride All
|
||||||
|
Order allow,deny
|
||||||
|
Allow from all
|
||||||
|
</Directory>
|
||||||
|
</VirtualHost>
|
Loading…
Reference in New Issue
Block a user