mirror of https://github.com/CIRCL/lookyloo
19 lines
580 B
Plaintext
19 lines
580 B
Plaintext
[Unit]
|
|
Description=uWSGI instance to serve lookyloo
|
|
After=network.target
|
|
|
|
[Service]
|
|
User=<system user used to install lookyloo>
|
|
Group=<group of the user used to install lookyloo>
|
|
Type=forking
|
|
WorkingDirectory=<path to the directory where you cloned the repository>
|
|
Environment="PATH=<path to the directory where the poetry executable is>:/usr/bin"
|
|
ExecStart=/bin/bash -c "exec poetry run start"
|
|
ExecStop=/bin/bash -c "exec poetry run stop"
|
|
StandardOutput=append:/var/log/lookyloo_message.log
|
|
StandardError=append:/var/log/lookyloo_error.log
|
|
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|