@scottalanmiller not sure I factory reset the device and now its's fine...
Posts
-
RE: Edge Router X - DHCP isn't workingposted in IT Discussion
-
RE: Edge Router X - DHCP isn't workingposted in IT Discussion
@eddiejennings do you think I am a user? Done that 3 times already...

-
Edge Router X - DHCP isn't workingposted in IT Discussion
So this morning my Edge Router X isn't handing out IP addressed. Any ideas?
If I manually set an IP, it works fine...
-
RE: Port - PFSense WAN goes offline every Hourposted in IT Discussion
@black3dynamite I am on the latest. It's running on KVM so maybe that's the issue.
-
RE: Networking and 1U Colocationposted in IT Discussion
@scottalanmiller Agreed. I was suggesting that he keep the lab at his apartment.
-
RE: Networking and 1U Colocationposted in IT Discussion
@eddiejennings Do you need all that processor? What about replacing with a couple NUC's?
-
RE: Caddy vs. Nginxposted in IT Discussion
I have been looking at Caddy as well recently.
It's reserve proxy setup is very easy.
-
RE: Using acme.sh to generate wildcard certificate with Nginx and Cloudflareposted in IT Discussion
@jaredbusch Also, certbot doesn't have automatic DNS configuration.
-
RE: Using acme.sh to generate wildcard certificate with Nginx and Cloudflareposted in IT Discussion
@jaredbusch Certbot has ACME v2 support since Version 0.22.0. This version may not yet be available depending on how you install Certbot and your systemโs software update mechanism.
-
Using acme.sh to generate wildcard certificate with Nginx and Cloudflareposted in IT Discussion
Install acme.sh
curl https://get.acme.sh | shSetup CloudFlare domain API to automatically issue certificate
First you need to login to your CloudFlare account to get your API key.
Then run:
export CF_Key="sdfsdfsdfljlbjkljlkjsdfoiwje" export CF_Email="xxxx@sss.com"The CF_Key and CF_Email will be saved in ~/.acme.sh/account.conf when you issue your first certificate.
Issue Wildcard certificates
acme.sh --issue -d example.com -d *.example.com --dns dns_cfNot using cloudflare? Check for your DNS provider here: https://github.com/Neilpang/acme.sh/blob/master/dnsapi/README.md
Install the certificate to NGINX
acme.sh --install-cert -d example.com \ --key-file /path/to/keyfile/in/nginx/key.pem \ --fullchain-file /path/to/fullchain/nginx/cert.pem \ --reloadcmd "service nginx force-reload"Now all you need to do is correctly update your NGINX .conf files
That's it
