William Antonelli
William Antonelli
~~I'm having this issue as well. Could you upload an example `projects.cson`? That would solve my problem.~~ Okay, so I didn't know what the Command Palette was, so what?
@mehcode Yeah, I thought the command palette was the same as what pops up when you press the keyboard shortcut for this plugin. Works great for me. Thanks for this.
Sure, have a go!
I haven't done anything on this project for a time, but I'll look into it. Currently stacked on other projects at the moment, so might be a while. What would...
I managed to edit `enable.go` and `main.go` to serve only TLS and not use the autocert bot.
Something like disabling the autocert would be more of a fork... unless the autocert could be used only if `--autocert` were an option... I'll look into it. This shouldn't be...
- Add `--autocert` to list of flags. It will invoke `tls.Enable()` - Create function to serve TLS only. This means changing `main.go` so HTTP does not start on its own,...
Certificate file path will be hardcoded: `"/etc/letsencrypt/live/"+db.Config("domain")+"/fullchain.pem"` and `/privkey.pem` as the location.
Hmm... Well, we could: - add a flag for `--cert` and `--key` paths - colocate, and admin would have to make sure to place files in that dir (or symlink)...
I like the way you think. Agreed; if `--cert` and `--key` paths are not set, then the default path will be used. As it stands, I created a separate function...