-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheoshistory-celery.service
62 lines (53 loc) · 1.88 KB
/
eoshistory-celery.service
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#####
#
# Systemd Service file for `privex/EOSHistory`
#
# To use this file, copy it into /etc/systemd/system/eoshistory-celery.service , replace `lg` with the username of
# the Linux account it was installed into, and adjust the paths if necessary.
#
# Once adjusted for your specific installation, run the following:
#
# systemctl enable eoshistory-celery.service
# systemctl start eoshistory-celery.service
#
# eoshistory-celery will now have started in the background as a systemd service, and will automatically start on reboot
#
#####
[Unit]
Description=Privex EOS History - Celery Workers
After=network.target
[Service]
Type=simple
User=lg
WorkingDirectory=/home/lg/EOSHistory/
EnvironmentFile=/home/lg/EOSHistory/.env
ExecStart=/home/lg/EOSHistory/run.sh queue
Restart=always
Environment=PYTHONUNBUFFERED=0
RestartSec=30
StandardOutput=syslog
# Hardening measures
####################
# Provide a private /tmp and /var/tmp.
PrivateTmp=true
# Mount /usr, /boot/ and /etc read-only for the process.
ProtectSystem=full
[Install]
WantedBy=multi-user.target
#####
# +===================================================+
# | © 2019 Privex Inc. |
# | https://www.privex.io |
# +===================================================+
# | |
# | Privex EOS History API |
# | License: GNU AGPL v3 |
# | |
# | https://github.com/Privex/EOSHistory |
# | |
# | Core Developer(s): |
# | |
# | (+) Chris (@someguy123) [Privex] |
# | |
# +===================================================+
#####