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 | před 4 dny | |
---|---|---|
cms-backd | před 4 dny | |
cms-cgi | před 3 týdny | |
cms-fsd | před 4 dny | |
cms-ident | před 3 týdny | |
cms-postd | před 4 dny | |
cms-seccomp | před 1 měsícem | |
cms-socket | před 4 měsíci | |
cms-socket-back | před 4 měsíci | |
cms-socket-db | před 4 měsíci | |
cms-socket-post | před 4 měsíci | |
cms-systemd | před 4 měsíci | |
example | před 5 měsíci | |
test | před 5 měsíci | |
.gitignore | před 5 měsíci | |
Cargo.lock | před 4 dny | |
Cargo.toml | před 3 týdny | |
LICENSE-APACHE | před 5 měsíci | |
LICENSE-MIT | před 5 měsíci | |
README.md | před 3 měsíci | |
TODO | před 5 roky | |
build.sh | před 2 týdny | |
create-users.sh | před 3 měsíci | |
install.sh | před 5 měsíci |
Copyright (c) 2011-2024 Michael Buesch m@bues.ch
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
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/
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