Autore: luca@studiomondello.eu

Installare Nginx Proxy Manager

Ottobre 18, 2021 By luca@studiomondello.eu

Preparazione Container mkdir nproxy cd nproxy/ Creazione docker-compose.yml nano docker-compose.yml version: ‘3’ services: app: image: ‘jc21/nginx-proxy-manager:latest’ restart: unless-stopped ports: – ’80:80′ – ’81:81′ – ‘443:443’ volumes: – ./data:/data – ./letsencrypt:/etc/letsencrypt […]

Installare Doker e Portainer su Ubuntu 18.04

Ottobre 18, 2021 By luca@studiomondello.eu

Installare Doker apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add – apt-key fingerprint 0EBFCD88 add-apt-repository “deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable” apt-get remove docker […]

Reverse Proxy Con Nginx

Ottobre 12, 2021 By luca@studiomondello.eu

Installare nginx apt install nginx systemctl enable nginx Verificae firewall ufw status Configurare certificati mkdir /etc/nginx/ssl-certs/ nano /etc/nginx/ssl-certs/nginx.crt incollare il certificato SSL nano /etc/nginx/ssl-certs/nginx.key incollare la private key Configurare nginx […]

Installare Zimbra su Ubuntu

Settembre 29, 2021 By luca@studiomondello.eu

Preparare il sistema snap install core; sudo snap refresh core apt-get remove certbot snap install –classic certbot ln -s /snap/bin/certbot /usr/bin/certbot certbot renew –dry-run sudo hostnamectl set-hostname mailserver.DOMINIO.it nano /etc/hosts […]