Project home: https://bues.ch Original repository at: https://git.bues.ch/git/cms.git https://bues.ch

Michael Buesch 45fcd65e4d Limit the number of blocking threads vor 4 Tagen
cms-backd 45fcd65e4d Limit the number of blocking threads vor 4 Tagen
cms-cgi 6e2e2e24b7 Remove warnings for Ident vor 3 Wochen
cms-fsd 45fcd65e4d Limit the number of blocking threads vor 4 Tagen
cms-ident 6e2e2e24b7 Remove warnings for Ident vor 3 Wochen
cms-postd 45fcd65e4d Limit the number of blocking threads vor 4 Tagen
cms-seccomp 9aef64565a seccomp: Fix unix socket rule vor 1 Monat
cms-socket 1ba72f0825 Move all dependencies to workspace vor 4 Monaten
cms-socket-back 1ba72f0825 Move all dependencies to workspace vor 4 Monaten
cms-socket-db 1ba72f0825 Move all dependencies to workspace vor 4 Monaten
cms-socket-post 1ba72f0825 Move all dependencies to workspace vor 4 Monaten
cms-systemd 1ba72f0825 Move all dependencies to workspace vor 4 Monaten
example 0d0989da3f example: Fix test page vor 5 Monaten
test e1178499f3 test/cgi: Add path vor 5 Monaten
.gitignore 1902ec2e04 Update .gitignore vor 5 Monaten
Cargo.lock 9d7520cdfd Update dependencies vor 4 Tagen
Cargo.toml 4c36f4107b Document MSRV vor 3 Wochen
LICENSE-APACHE 33156c0d9c Add Apache 2.0 license vor 5 Monaten
LICENSE-MIT 7cf8f7c655 Add MIT license vor 5 Monaten
README.md 07a251310c Rename user script vor 3 Monaten
TODO a4e0639a7f Remove header todo entry vor 5 Jahren
build.sh c73682bb74 Fix build with cargo-audit 0.21 vor 2 Wochen
create-users.sh 07a251310c Rename user script vor 3 Monaten
install.sh db0e799a69 install: Disable services vor 5 Monaten

README.md

Simple Rust based CMS

Copyright (c) 2011-2024 Michael Buesch m@bues.ch

Building

Run the build.sh script to build the CMS system.

The build requires the cargo-audit and cargo-auditable Rust crates installed:

cargo install cargo-audit cargo-auditable

After installing all build dependencies, run the build script:

./build.sh

Installing

After building, run the create-users.sh script to create the user/group structure for CMS in the operating system:

./create-users.sh

After that, run the install.sh script. It will install the CMS system into /opt/cms/.

./install.sh

Then create the database inside of /opt/cms/etc/cms/db/. You may start with the example db:

cp -r ./example/db/* /opt/cms/etc/cms/db/

Configuring Apache httpd

Configure the CMS CGI binary as CGI ScriptAlias:

ScriptAlias /cms /opt/cms/libexec/cms-cgi/cms.cgi

<Directory /opt/cms/libexec/cms-cgi>
    AllowOverride None
    Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch -Indexes
    Require all granted
</Directory>

# Redirect all 404 to the CMS 404 handler (optional)
ErrorDocument 404 /cms/__nopage/__nogroup.html