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

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