Golang : Getting Echo framework StartAutoTLS to work
Problem:
You want to try out the Echo framework for Golang and somehow cannot get the AutoTLS recipe to work. What's going on and how to get it to work?
Solution:
In order to get the recipe to work. You need an actual domain name. Yes, you will need to buy one or setup a sub-domain.
localhost
or IP address pointing to your web server will not work.
Hence in the documentation:
This recipe demonstrates how to obtain TLS certificates for a domain automatically from Let’s Encrypt. Echo#StartAutoTLS accepts an address which should listen on port 443.
Browse to
https://<DOMAIN>
. If everything goes fine, you should see a welcome message with TLS enabled on the website.
Yup. Focus on the <DOMAIN>
keyword.
Hope this helps!
References:
See also : Golang : Gin framework accept query string by post request example
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+6.4k CodeIgniter : form input set_value cause " to become & quot
+10.2k Golang : Use regular expression to get all upper case or lower case characters example
+11.1k Golang : Simple image viewer with Go-GTK
+10.2k Golang : Check a web page existence with HEAD request example
+20.6k Nginx + FastCGI + Go Setup.
+55.3k Golang : Unmarshal JSON from http response
+22.2k Golang : Match strings by wildcard patterns with filepath.Match() function
+11.9k Golang : Convert(cast) bigint to string
+4.6k Javascript : Detect when console is activated and do something about it
+12k Golang : Convert a rune to unicode style string \u
+7.1k Restart Apache or Nginx web server without password prompt
+4.8k Golang : A program that contain another program and executes it during run-time