Skip to content

Latest commit

 

History

History
51 lines (32 loc) · 1.31 KB

README.md

File metadata and controls

51 lines (32 loc) · 1.31 KB

Systemd integration for Popub

You will be able to run Popub as a Systemd service, either automatically or manually.

Installation

To install, type:

sudo make install

Alternatively, you may copy the .service files to one of the following paths:

  • /usr/lib/systemd/system
  • /lib/systemd/system
  • /etc/systemd/system

Configuration

For popub-local, create configuration files under /etc/popub/local/*.conf;

for local, create under /etc/popub/relay/*.conf.

You may create multiple configurations using different file names.

Local configuration files should follow the template below:

LOCAL_ADDR=localhost:80
RELAY_ADDR=my.server.addr:46687
AUTH_KEY=SomePassword

Relay configuration files should follow the template below:

RELAY_ADDR=:46687
PUBLIC_ADDR=:8080
AUTH_KEY=SomePassword

Activate the service

Use sudo systemctl start [email protected] to start the local service described at /etc/popub/local/foo.conf;

use sudo systemctl start [email protected] to start the relay service described at /etc/popub/relay/bar.conf.

Replace "foo" with the file name you have just chosen for your configuration file.

Use sudo systemctl enable [email protected] or sudo systemctl enable [email protected] to make Popub to automatically start since next boot.