Replace Textile with Markdown.
[bloggy.git] / README
blobfaa3b581a6a1582c3c90d2443c22741a9f02394b
1 Requirements: Python >= 2.5
3 The directory the database is to be created in needs to be writable by
4 the web server.
6 If you don't want everyone to be able to post to your blog you'll need
7 to secure post.cgi somehow. This will vary depending on the web server
8 you're using and your needs. Use your brain.
10 If you're using Apache, one possible solution is to place the following
11 in a file called .htaccess in the same directory as post.cgi:
13 <Files post.cgi>
14     AuthType Basic
15     AuthName "Password Required"
16     AuthUserFile /path/to/.htpasswd
17     Require valid-user
18 </Files>
20 You'll obviously also need to create a .htpasswd file containing your
21 authentication credentials. This can be done using the htpasswd command.