├── .gitattributes ├── .gitignore ├── LICENSE.md ├── README.MD ├── certera ├── adguard.sh ├── apache2.sh ├── dell-idrac.sh ├── edge-switch.sh ├── full-chain-pem.sh ├── media-server-plex.sh └── unifi-controller.sh ├── cw-adguard.sh ├── cw-apache2.sh ├── cw-docker.sh ├── cw-gitea.sh ├── cw-gitlab.sh ├── cw-grafana.sh ├── cw-iobroker.sh ├── cw-media-server-jellyfin ├── cw-media-server-plex.sh ├── cw-nginx.sh ├── cw-pfsense.sh ├── cw-proxmox_backup_server.sh ├── cw-proxmox_pve.sh ├── cw-unifi-controller.sh ├── cw-unifi-udm.sh ├── cw-windows-plain.ps1 ├── cw-xcp-ng.sh ├── dns_cloudflare ├── create.sh ├── del.sh ├── delete.sh ├── notes.txt └── web_config.png └── post-processing-idrac.sh /.gitattributes: -------------------------------------------------------------------------------- 1 | # shell scripts require LF 2 | *.sh text eol=lf 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # ignore things kept locally 2 | _private/ 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregtwallace/certificate-scripts/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregtwallace/certificate-scripts/HEAD/README.MD -------------------------------------------------------------------------------- /certera/adguard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregtwallace/certificate-scripts/HEAD/certera/adguard.sh -------------------------------------------------------------------------------- /certera/apache2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregtwallace/certificate-scripts/HEAD/certera/apache2.sh -------------------------------------------------------------------------------- /certera/dell-idrac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregtwallace/certificate-scripts/HEAD/certera/dell-idrac.sh -------------------------------------------------------------------------------- /certera/edge-switch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregtwallace/certificate-scripts/HEAD/certera/edge-switch.sh -------------------------------------------------------------------------------- /certera/full-chain-pem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregtwallace/certificate-scripts/HEAD/certera/full-chain-pem.sh -------------------------------------------------------------------------------- /certera/media-server-plex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregtwallace/certificate-scripts/HEAD/certera/media-server-plex.sh -------------------------------------------------------------------------------- /certera/unifi-controller.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregtwallace/certificate-scripts/HEAD/certera/unifi-controller.sh -------------------------------------------------------------------------------- /cw-adguard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregtwallace/certificate-scripts/HEAD/cw-adguard.sh -------------------------------------------------------------------------------- /cw-apache2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregtwallace/certificate-scripts/HEAD/cw-apache2.sh -------------------------------------------------------------------------------- /cw-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregtwallace/certificate-scripts/HEAD/cw-docker.sh -------------------------------------------------------------------------------- /cw-gitea.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregtwallace/certificate-scripts/HEAD/cw-gitea.sh -------------------------------------------------------------------------------- /cw-gitlab.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregtwallace/certificate-scripts/HEAD/cw-gitlab.sh -------------------------------------------------------------------------------- /cw-grafana.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregtwallace/certificate-scripts/HEAD/cw-grafana.sh -------------------------------------------------------------------------------- /cw-iobroker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregtwallace/certificate-scripts/HEAD/cw-iobroker.sh -------------------------------------------------------------------------------- /cw-media-server-jellyfin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregtwallace/certificate-scripts/HEAD/cw-media-server-jellyfin -------------------------------------------------------------------------------- /cw-media-server-plex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregtwallace/certificate-scripts/HEAD/cw-media-server-plex.sh -------------------------------------------------------------------------------- /cw-nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregtwallace/certificate-scripts/HEAD/cw-nginx.sh -------------------------------------------------------------------------------- /cw-pfsense.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregtwallace/certificate-scripts/HEAD/cw-pfsense.sh -------------------------------------------------------------------------------- /cw-proxmox_backup_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregtwallace/certificate-scripts/HEAD/cw-proxmox_backup_server.sh -------------------------------------------------------------------------------- /cw-proxmox_pve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregtwallace/certificate-scripts/HEAD/cw-proxmox_pve.sh -------------------------------------------------------------------------------- /cw-unifi-controller.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregtwallace/certificate-scripts/HEAD/cw-unifi-controller.sh -------------------------------------------------------------------------------- /cw-unifi-udm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregtwallace/certificate-scripts/HEAD/cw-unifi-udm.sh -------------------------------------------------------------------------------- /cw-windows-plain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregtwallace/certificate-scripts/HEAD/cw-windows-plain.ps1 -------------------------------------------------------------------------------- /cw-xcp-ng.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregtwallace/certificate-scripts/HEAD/cw-xcp-ng.sh -------------------------------------------------------------------------------- /dns_cloudflare/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregtwallace/certificate-scripts/HEAD/dns_cloudflare/create.sh -------------------------------------------------------------------------------- /dns_cloudflare/del.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | nohup /opt/certera/cloudflare/delete.sh $1 $2 $3 & 4 | 5 | -------------------------------------------------------------------------------- /dns_cloudflare/delete.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | sleep 270 4 | 5 | lexicon cloudflare delete $1 TXT --name="$2" 6 | -------------------------------------------------------------------------------- /dns_cloudflare/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregtwallace/certificate-scripts/HEAD/dns_cloudflare/notes.txt -------------------------------------------------------------------------------- /dns_cloudflare/web_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregtwallace/certificate-scripts/HEAD/dns_cloudflare/web_config.png -------------------------------------------------------------------------------- /post-processing-idrac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregtwallace/certificate-scripts/HEAD/post-processing-idrac.sh --------------------------------------------------------------------------------