Project home: https://bues.ch Original repository at: https://git.bues.ch/git/cms.git https://bues.ch
Michael Buesch e5466feb11 Update dependencies | 3 months ago | |
---|---|---|
cms-backd | 3 months ago | |
cms-cgi | 3 months ago | |
cms-fsd | 3 months ago | |
cms-ident | 3 months ago | |
cms-postd | 3 months ago | |
cms-seccomp | 3 months ago | |
cms-socket | 3 months ago | |
cms-socket-back | 3 months ago | |
cms-socket-db | 3 months ago | |
cms-socket-post | 3 months ago | |
cms-systemd | 3 months ago | |
example | 5 months ago | |
test | 5 months ago | |
.gitignore | 5 months ago | |
Cargo.lock | 3 months ago | |
Cargo.toml | 3 months ago | |
LICENSE-APACHE | 5 months ago | |
LICENSE-MIT | 5 months ago | |
README.md | 5 months ago | |
TODO | 5 years ago | |
build.sh | 5 months ago | |
install-users.sh | 6 months ago | |
install.sh | 4 months ago |
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 install-users.sh
script to create the user/group structure for CMS in the operating system:
./install-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