- Ajout de commentaires
This commit is contained in:
parent
22ebd22769
commit
5f31fd1587
66
TODO.md
66
TODO.md
|
|
@ -1,15 +1,63 @@
|
|||
# SCRIPT INSTALL
|
||||
- faire le redirect port 80
|
||||
BUG SMTP PROXMOX
|
||||
|
||||
changer le pass
|
||||
pct exec 105 -- passwd root
|
||||
aller sur la vm
|
||||
pct enter 105
|
||||
|
||||
|
||||
ajouter la conf ssh
|
||||
/etc/ssh/sshd_config
|
||||
systemctl restart ssh
|
||||
|
||||
certifcat autosigne
|
||||
openssl req -newkey rsa:2048 -nodes -keyout jellyfin.key -x509 -days 365 -out jellyfin.crt
|
||||
-----------------------------------
|
||||
nano /etc/pve/lxc/104.conf
|
||||
|
||||
mount lxc
|
||||
pct set ID -mp0 /mnt/synology_series,mp=/srv/media/series
|
||||
pct set 104 -mp1 /mnt/synology_films,mp=/srv/media/films
|
||||
|
||||
------------------------------------------
|
||||
|
||||
git config --global http.sslVerify false
|
||||
|
||||
git init
|
||||
git remote add origin https://192.168.0.100/Frogg/Linux_frogg-profile.d.git
|
||||
git fetch
|
||||
git reset --hard origin/main
|
||||
git clean -fd
|
||||
|
||||
git -c http.sslVerify=false clone https://192.168.0.100/Frogg/Linux_frogg-profile.d.git
|
||||
|
||||
----------------------------------------------------------
|
||||
|
||||
|
||||
Bash
|
||||
nano /etc/pve/lxc/ID.conf
|
||||
Ajoute cette ligne à la fin du fichier :
|
||||
Plaintext
|
||||
mp0: /mnt/data/series,mp=/srv/media/series
|
||||
|
||||
redemarer
|
||||
pct stop 104
|
||||
pct start 104
|
||||
|
||||
|
||||
# GITEA
|
||||
- faire le redirect port 80
|
||||
- ajouter https sur gitea
|
||||
# SERVER
|
||||
- mettre les scripts sur tous les linux
|
||||
> mettre les scripts sur tous les linux
|
||||
# ZABBIX
|
||||
- config Proxmox (dl le template)
|
||||
- config ndv
|
||||
- config gita
|
||||
> config Proxmox (dl le template)
|
||||
>
|
||||
> config ndv
|
||||
>
|
||||
> config gita
|
||||
>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
ANSIBLE ?
|
||||
|
||||
|
|
|
|||
|
|
@ -17,6 +17,8 @@ git-clone(){
|
|||
|
||||
[[ -z "$1" ]] && echo "Veuillez préciser l'adresse d'un dépôt Git" && return 1
|
||||
|
||||
# git config --global http.sslVerify false
|
||||
|
||||
git init
|
||||
git remote add origin "$1"
|
||||
git fetch
|
||||
|
|
|
|||
Loading…
Reference in New Issue