Created Configuration (markdown)

Alex Ling 2020-03-20 17:06:24 -04:00
parent 6953514fb7
commit a12a6662f6
1 changed files with 19 additions and 0 deletions

19
Configuration.md Normal file

@ -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
```