Compare commits
3 commits
db9115b90b
...
b0d94f91dc
Author | SHA1 | Date | |
---|---|---|---|
b0d94f91dc | |||
d40e8642de | |||
5851b686b4 |
3 changed files with 27 additions and 1 deletions
24
contrib/librepages-conductor.service
Normal file
24
contrib/librepages-conductor.service
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
[Unit]
|
||||||
|
Description=LibrePages Conductor: Easiest way to deploy websites. Conductor component
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=simple
|
||||||
|
User=root
|
||||||
|
ExecStart=/usr/bin/conductor serve
|
||||||
|
Restart=on-failure
|
||||||
|
RestartSec=1
|
||||||
|
SuccessExitStatus=3 4
|
||||||
|
RestartForceExitStatus=3 4
|
||||||
|
SystemCallArchitectures=native
|
||||||
|
MemoryDenyWriteExecute=true
|
||||||
|
NoNewPrivileges=true
|
||||||
|
Environment="RUST_LOG=info"
|
||||||
|
|
||||||
|
[Unit]
|
||||||
|
Wants=network-online.target
|
||||||
|
Wants=network-online.target
|
||||||
|
Requires=postgresql.service
|
||||||
|
After=syslog.target
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
|
@ -38,6 +38,8 @@ DOCKER_IMG="realaravinth/$NAME:$3"
|
||||||
|
|
||||||
get_bin(){
|
get_bin(){
|
||||||
cp target/release/conductor $TARGET_DIR
|
cp target/release/conductor $TARGET_DIR
|
||||||
|
cp -r config/ $TARGET_DIR
|
||||||
|
cp -r contrib/ $TARGET_DIR
|
||||||
}
|
}
|
||||||
|
|
||||||
copy() {
|
copy() {
|
||||||
|
|
|
@ -76,7 +76,7 @@ impl Settings {
|
||||||
let mut s = Config::builder();
|
let mut s = Config::builder();
|
||||||
|
|
||||||
const CURRENT_DIR: &str = "./config/config.toml";
|
const CURRENT_DIR: &str = "./config/config.toml";
|
||||||
const ETC: &str = "/etc/lpconductor/config.toml";
|
const ETC: &str = "/etc/librepages/conductor/config.toml";
|
||||||
|
|
||||||
if let Ok(path) = env::var("LPCONDUCTOR_CONFIG") {
|
if let Ok(path) = env::var("LPCONDUCTOR_CONFIG") {
|
||||||
s = s.add_source(File::with_name(&path));
|
s = s.add_source(File::with_name(&path));
|
||||||
|
|
Loading…
Add table
Reference in a new issue