You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
949 B
32 lines
949 B
<VirtualHost 127.0.0.1:8080>
|
|
WSGIDaemonProcess www-data display-name=%{GROUP} processes=2 threads=2
|
|
WSGIProcessGroup www-data
|
|
WSGIScriptAlias / "/home/www/proj/project.wsgi"
|
|
ServerName 176.121.11.165
|
|
<Directory "/home/www/proj/">
|
|
Order allow,deny
|
|
Options Indexes FollowSymLinks
|
|
Allow from all
|
|
IndexOptions FancyIndexing
|
|
</Directory>
|
|
|
|
Alias /media "/home/www/proj/media/"
|
|
Alias /static "/home/www/proj/static/"
|
|
|
|
|
|
<Directory "/home/www/proj/media">
|
|
Order allow,deny
|
|
Options Indexes FollowSymLinks
|
|
Allow from all
|
|
IndexOptions FancyIndexing
|
|
</Directory>
|
|
<Directory "/home/www/proj/static">
|
|
Order allow,deny
|
|
Options Indexes FollowSymLinks
|
|
Allow from all
|
|
IndexOptions FancyIndexing
|
|
</Directory>
|
|
|
|
ErrorLog /var/log/apache2/expo.error.log
|
|
CustomLog /var/log/apache2/expo.access.log combined
|
|
</VirtualHost>
|
|
|