mirror of
https://git.wownero.com/wownero/wownerowp.git
synced 2024-08-15 01:03:16 +00:00
Rewrite plugin to v3.0
This commit is contained in:
parent
4c091a13f7
commit
4def1b771e
37 changed files with 4613 additions and 1685 deletions
14
assets/systemd-unit-files/monero-wallet-rpc.service
Normal file
14
assets/systemd-unit-files/monero-wallet-rpc.service
Normal file
|
@ -0,0 +1,14 @@
|
|||
[Unit]
|
||||
Description=Monero Wallet RPC
|
||||
After=network.target monerod.service
|
||||
|
||||
[Service]
|
||||
User=moneroservices
|
||||
Group=moneroservices
|
||||
WorkingDirectory=/opt/monero-wallets
|
||||
Type=simple
|
||||
ExecStart=/opt/monero-bin/monero-wallet-rpc --wallet-file /opt/monero-wallets/woocommerce --rpc-bind-port 18080 --password-file /opt/monero-wallets/woocommerce.password --disable-rpc-login --log-file /var/log/monero-wallet.log
|
||||
Restart=always
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
14
assets/systemd-unit-files/monerod.service
Normal file
14
assets/systemd-unit-files/monerod.service
Normal file
|
@ -0,0 +1,14 @@
|
|||
[Unit]
|
||||
Description=Monero Full Node
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
User=moneroservices
|
||||
Group=moneroservices
|
||||
WorkingDirectory=/opt/monero-data-dir
|
||||
Type=simple
|
||||
LimitNOFILE=65535
|
||||
ExecStart=/usr/bin/monerod --log-file /var/log/monerod.log --data-dir /opt/monero-data-dir --non-interactive
|
||||
Restart=always
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
Loading…
Add table
Add a link
Reference in a new issue