Skip to content

dseg/apache-mod-diary

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mod_diary - simple blog system for Apache HTTPD Server

Demo Blog

http://www.cuspy.org/diary/

Dependencies

For debian:

# apt-get install libmarkdown2-dev clearsilver-dev

Build

% autoreconf -i
% ./configure --with-apxs=<APXS_PATH>
% make
# make install

Also you can specify dependency libraries path

% ./configure --with-apxs=<APXS_PATH> \
    --with-discount=<DISCOUNT_DIR> \
    --with-clearsilver=<CLEARSILVER_DIR>

Configration

httpd.conf

LoadModule diary_module modules/mod_diary.so
<Location />
  SetHandler diary
  DiaryTitle "Example Diary"
  DiaryURI http://www.example.com/diary/
  DiaryPath /path/to/diary
</Location>

You can specify DiaryTheme if you want to use custom theme.

Optional Settings

default value
DiaryTheme default
DiaryGithubFlavouredMarkdown On
DiaryCalendar On

Author

HAMANO Tsukasa http://twitter.com/hamano

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 67.0%
  • CSS 33.0%