This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
Created on Aug 28, 2013 | |
@author: cgrimm | |
''' | |
import cPickle as pickle | |
import time | |
import hashlib | |
import sys | |
from datetime import datetime, tzinfo, timedelta |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Proxy | |
NameVirtualHost *:8080 | |
Listen 8080 | |
<VirtualHost *:8080> | |
ServerName proxy-server | |
LimitRequestBody 5368709122 | |
WSGIDaemonProcess proxy-server processes=5 threads=1 | |
WSGIProcessGroup proxy-server | |
WSGIScriptAlias / /var/www/swift/proxy-server.wsgi | |
LimitRequestFields 200 |