mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 08:02:54 +11:00
16 lines
513 B
ApacheConf
16 lines
513 B
ApacheConf
<VirtualHost *:9000>
|
|
ServerName pastebin.dev.lincolnloop.com
|
|
ServerAdmin webmaster@dev.lincolnloop.com
|
|
|
|
ErrorLog /var/log/apache2/pastebin.dev.lincolnloop.com.log
|
|
|
|
WSGIDaemonProcess pastebin user=www-data inactivity-timeout=600
|
|
WSGIProcessGroup pastebin
|
|
WSGIScriptAlias / /opt/webapps/pastebin.dev.lincolnloop.com/etc/apache/django.wsgi
|
|
|
|
<Directory /opt/webapps/pastebin.dev.lincolnloop.com/etc/apache>
|
|
Order deny,allow
|
|
Allow from all
|
|
</Directory>
|
|
|
|
</VirtualHost>
|