From a12a6662f6bf746816d6dafd1f1095ce1dd4724e Mon Sep 17 00:00:00 2001 From: Alex Ling Date: Fri, 20 Mar 2020 17:06:24 -0400 Subject: [PATCH] Created Configuration (markdown) --- Configuration.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Configuration.md diff --git a/Configuration.md b/Configuration.md new file mode 100644 index 0000000..a1d7f98 --- /dev/null +++ b/Configuration.md @@ -0,0 +1,19 @@ +### Systemd Service + +You can use the following script to run Mango as a systemd service + +```systemd +[Unit] +Description=Mango manga server +After=network.target + +[Service] +Type=simple +Restart=always +RestartSec=1 +ExecStart=/usr/local/bin/mango + +[Install] +WantedBy=default.target +``` +