Files
da78035043643d1d89efbab197803d84934e420a
swift /examples /apache2 /proxy-server.template

28 lines
917 B
Plaintext
Raw Normal View History

#
# Change %PORT% to the port that you wish to use on your system
# Change %SERVICENAME% to the service name you are using
#
# For example:
# Replace %PORT% by 8080
# Replace %SERVICENAME% by proxy-server
NameVirtualHost *:%PORT%
Listen %PORT%
<VirtualHost *:%PORT%>
# The limit of an object size
LimitRequestBody 5368709122
WSGIScriptAlias / /var/www/swift/%SERVICENAME%.wsgi
WSGIApplicationGroup %{GLOBAL}
LimitRequestFields 200
ErrorLog /var/log/%APACHE_NAME%/%SERVICENAME%
LogLevel debug
CustomLog /var/log/%APACHE_NAME%/access.log combined
</VirtualHost>