File: apache_bepasty.conf.example

package info (click to toggle)
bepasty 1.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 844 kB
  • sloc: python: 2,978; javascript: 1,468; makefile: 172; sh: 30
file content (18 lines) | stat: -rw-r--r-- 564 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<VirtualHost *:80>
        DocumentRoot /var/www/html
        ServerName paste.example.org
        ErrorLog /var/log/apache2/paste.example.org-error.log
        CustomLog /var/log/apache2/paste.example.org-access.log combined

        AddDefaultCharset utf-8

        WSGIDaemonProcess bepasty
        WSGIScriptAlias / /srv/bepasty/bepasty.wsgi
        
        <Directory /var/www/bepasty>
            WSGIProcessGroup bepasty
            WSGIApplicationGroup %{GLOBAL}
            Order deny,allow
            Allow from all
        </Directory>
</VirtualHost>