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

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