-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml.sample
More file actions
48 lines (42 loc) · 1.35 KB
/
config.toml.sample
File metadata and controls
48 lines (42 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Proxmox cluster configuration
# You can configure multiple clusters and switch between them in the UI
# Example cluster with password authentication
[[clusters]]
id = "main"
name = "My Proxmox Cluster 1"
# When enabled, prevents VMID reuse by updating the cluster's next-id lower bound
# after each VM/container creation. This avoids mixing backups and monitoring data.
incremental_vmid = false
[[clusters.nodes]]
host = "x.y.z.1"
user = "root@pam"
password = "admin"
verify_ssl = false
# Example cluster with API token authentication (recommended for production)
# To create an API token in Proxmox:
# 1. Go to Datacenter → Permissions → API Tokens
# 2. Click "Add" and select a user
# 3. Enter a token ID (e.g., "proxui")
# 4. Optionally uncheck "Privilege Separation" for full user permissions
# 5. Copy the token secret (shown only once!)
#
#[[clusters]]
#id = "production"
#name = "Production Cluster"
#
# [[clusters.nodes]]
# host = "pve.example.com"
# user = "root@pam"
# token_name = "proxui"
# token_value = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
# verify_ssl = true
# Example second cluster with password auth (uncomment and configure as needed)
#[[clusters]]
#id = "secondary"
#name = "My Proxmox Cluster 2"
#
# [[clusters.nodes]]
# host = "x.y.z.2"
# user = "root@pam"
# password = "admin"
# verify_ssl = false