add example system service file,

add example config file
This commit is contained in:
2026-04-23 22:36:52 +00:00
parent 2d85cd0b72
commit f6aafd0f87
2 changed files with 31 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{
"listenPort": 8083,
"sessionCookieName": "PAASUserManagerTicket",
"sessionCookie": {
"path": "/",
"httpOnly": true,
"secure": false,
"maxAge": 7200
},
"pve": {
"url": "https://<proxmox host>/api2/json",
"token": {
"user": "proxmoxaas-api",
"realm": "pam",
"id": "token",
"uuid": "<secret-uuid>"
},
"paas-client-role": "<PAAS Client Role>"
}
}
+11
View File
@@ -0,0 +1,11 @@
[Unit]
Description=proxmoxaas-user-manager-api
After=network.target
[Service]
WorkingDirectory=/<path to dir>
ExecStart=/<path to dir>/proxmoxaas-fabric
Restart=always
RestartSec=10
Type=simple
[Install]
WantedBy=default.target