linux:proxmox

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentes Révision précédente
Prochaine révision
Révision précédente
linux:proxmox [2025/12/06 22:25] – add link about container template phswlinux:proxmox [2025/12/06 22:30] (Version actuelle) – add how to setup acme certificate renewal phsw
Ligne 37: Ligne 37:
   * [[https://pve.proxmox.com/wiki/VM_Templates_and_Clones|VM Templates and Clones]]   * [[https://pve.proxmox.com/wiki/VM_Templates_and_Clones|VM Templates and Clones]]
   * [[https://febryandana.xyz/posts/proxmox-create-lxc-instance-and-template/|Create LXC (Linux Container) Instance and Template]]   * [[https://febryandana.xyz/posts/proxmox-create-lxc-instance-and-template/|Create LXC (Linux Container) Instance and Template]]
 +
 +
 +==== Faire écouter l'interface web sur le port 443 ====
 +
 +  * [[https://pve.proxmox.com/wiki/Web_Interface_Via_Nginx_Proxy|Web Interface Via Nginx Proxy]]
 +
 +Ajouter aux interfaces dans ''/etc/network/interfaces'' :
 +<code bash>
 +post-up iptables -t nat -A PREROUTING -d <your-ip> -p tcp --dport 443 -j REDIRECT --to-port 8006 || true
 +</code>
 +Ensuite pour appliquer immédiatement le changement :
 +<code bash>
 +sudo ifreload -a
 +</code>
 +
 +
 +==== Gérer le renouvellement du certificat HTTPS avec ACME ====
 +
 +  * [[https://pve.proxmox.com/wiki/Certificate_Management|Certificate Management]]
 +
 +<code bash>
 +sudo pvenode acme account register default em@il --directory https://ca.homelab/acme/acme/directory
 +sudo pvenode config set --acme domains=proxmox.homelab  # or from the web interface
 +sudo pvenode acme cert order  # or from the web interface
 +</code>
  
  • linux/proxmox.1765056324.txt.gz
  • Dernière modification : 2025/12/06 22:25
  • de phsw