• 19 Posts
  • 162 Comments
Joined 1 year ago
cake
Cake day: June 22nd, 2023

help-circle


  • One could also think that whoever packaged this was hurried while filling a form, and wanted to provide credit where it was due. So, maybe they were on the best of their intents… We don’t know.

    If I were to use this, I would check other apps from same uploader. Or better, see what permissions are being ask.

    In any case, trusting blindly github contributors on teamnewpipe organization is not extremely different.

    Trust and credibility are volatile and freely given. It’s youtube, not my bank account ;p



















  • Create a user, and then a systemd unit for it, under ~/.config/systemd/user/ with contents like these:

    [Unit]
    Description=Caddy web server
    After=network.target
    
    [Service]
    ExecStart=/usr/local/bin/caddy run --config /path/to/Caddyfile --envfile /path/to/Envfile
    ExecReload=/usr/local/bin/caddy reload --config /path/to/Caddyfile --envfile /path/to/Envfile
    Restart=on-failure
    User=caddy
    Group=caddy
    
    [Install]
    WantedBy=default.target
    

    Adjust the paths in the arguments. It will require systemctl daemon-reload for such unit to be available for enabling and starting it…