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;
}
}...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.