diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-10-30 11:51:40 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-10-30 11:51:40 -0500 |
commit | 505310c292b3c03c2427504b1895e8cfe3d67616 (patch) | |
tree | 44c79ef48d8a5ca4e82fad329e882c2d7a5754e0 /paste.ini | |
parent | 91903aa601813f4ce7ea8259aa8fe2910b576311 (diff) | |
download | mediagoblin-505310c292b3c03c2427504b1895e8cfe3d67616.tar.lz mediagoblin-505310c292b3c03c2427504b1895e8cfe3d67616.tar.xz mediagoblin-505310c292b3c03c2427504b1895e8cfe3d67616.zip |
Added a "broadcast" server config and a bit of helpful commenting (I hope!)
Diffstat (limited to 'paste.ini')
-rw-r--r-- | paste.ini | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -38,11 +38,32 @@ beaker.session.lock_dir = %(here)s/user_dev/beaker/sessions/lock use = egg:mediagoblin#errors debug = false + +############################## +# Server configuration options +############################## + +# The server that is run by default. +# By default, should only be accessable locally [server:main] use = egg:Paste#http host = 127.0.0.1 port = 6543 +####################### +# Helper server configs +# --------------------- +# If you are configuring the paste config manually, you can remove +# these. + +# Use this if you want to run on port 6543 and have MediaGoblin be +# viewable externally +[server:broadcast] +use = egg:Paste#http +host = 0.0.0.0 +port = 6543 + +# Use this if you want to connect via fastcgi [server:fcgi] use = egg:flup#fcgi host = 127.0.0.1 |