Lang: text
Get the source!
Actions
Recent Pastes
text846557233 (f0nz julio 29, 2010 at 16:58)
FLOWERS (f0nz julio 29, 2010 at 16:27)
THE CAVEMAN (f0nz julio 29, 2010 at 16:36)
STARS (f0nz julio 29, 2010 at 16:49)
cherokee failing to start within a FreeBSD Jail (Wu julio 29, 2010 at 13:41)
TinyHTTPProxy (Wu julio 20, 2010 at 17:43)
some dirty z5 html rendered code (Wu julio 15, 2010 at 19:02)
As per request (MarcosBL julio 09, 2010 at 14:28)
using openssl to test aTLS smtp connection (Wu julio 09, 2010 at 12:25)
tcsh358213545 ( julio 01, 2010 at 18:37)
About
This is the paste site from e-shell.org, my personal website. It is an instance of the CodeSharingZ Zope Product (just take a look at http://zopecode.codigo23.net/wiki/CodeSharingZ to learn more about it). Feel free to paste whatever you want, but notice that all the pastes in here are deleted in a regular basis.
Links
L text
(http://en.wikipedia.org/wiki/Plain_text)

sample mod_python vhost setup

 1 <VirtualHost *:80>
 2         ServerAdmin xxxxx@xxxxxx.xxx
 3         ServerName xxx.xxxxxxxx.xxxx
 4         DocumentRoot /usr/local/www/apache22/data/XXXXXXX
 5 
 6         <Location "/">
 7                 SetHandler python-program
 8                 PythonHandler django.core.handlers.modpython
 9                 SetEnv DJANGO_SETTINGS_MODULE usc.settings
10                 PythonDebug On
11                 PythonPath "['/path/to/my/django/app'] + sys.path"
12                 PythonInterpreter my_super_shiny_interpreter
13         </Location>
14 
15         <Location "/media">
16                 SetHandler None
17         </Location>
18         
19         ErrorLog /var/log/apache22/xxxx.xxxxx.xxxxx-error.log
20         CustomLog /var/log/apache22/xxxx.xxxx.xxxxx-access.log combined
21         ServerSignature Off
22 </VirtualHost>
Pasted by Wu on marzo 10, 2010 at 11:03 | Lang: text | (22 lines of code)