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