daemon

  1. G

    Proxmox VE behind reverse proxy (Real-IP)

    Hi, I access my PVE behind a reverse proxy. here is the conf server { listen 80; server_name myfqdn; set $primary_domain myfqdn; if ($host != $primary_domain) { rewrite ^ $scheme://$primary_domain permanent; } location / { return 301 https://$server_name$request_uri; } }...
  2. D

    pct exec and daemonizing

    I wish to launch a script on a collection of containers. pct exec seems to do what I want. Except I want to background my script and have the pct exec finish immediately. I tried just adding an & (ampersand) but when the pct exec finishes, it terminates the backgrounded script. I have now tried...