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 | пре 4 дана | |
cms-cgi | пре 3 недеља | |
cms-fsd | пре 4 дана | |
cms-ident | пре 3 недеља | |
cms-postd | пре 4 дана | |
cms-seccomp | пре 1 месец | |
cms-socket | пре 4 месеци | |
cms-socket-back | пре 4 месеци | |
cms-socket-db | пре 4 месеци | |
cms-socket-post | пре 4 месеци | |
cms-systemd | пре 4 месеци | |
example | пре 5 месеци | |
test | пре 5 месеци | |
.gitignore | пре 5 месеци | |
Cargo.lock | пре 4 дана | |
Cargo.toml | пре 3 недеља | |
LICENSE-APACHE | пре 5 месеци | |
LICENSE-MIT | пре 5 месеци | |
README.md | пре 3 месеци | |
TODO | пре 5 година | |
build.sh | пре 2 недеља | |
create-users.sh | пре 3 месеци | |
install.sh | пре 5 месеци |
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