Systemd Service More Simple Webserver
Version vom 21. Juni 2024, 04:14 Uhr von Thomas.will (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „ root@pinkman:/etc/systemd/system# cat simple-http.service <pre> [Unit] Description=My Miscellaneous Service After=network.target [Service] Type=simple User…“)
root@pinkman:/etc/systemd/system# cat simple-http.service
[Unit] Description=My Miscellaneous Service After=network.target [Service] Type=simple User=thomas WorkingDirectory=/home/thomas/html ExecStart=/usr/bin/python3 -m http.server Restart=on-abort [Install] WantedBy=multi-user.target