Trevor Manternach
Trevor Manternach
@sabre23t, good catch! Not intentional, no. I'll take a look at this tomorrow and report back.
@am1t Looks great. Your Twitter sign on icon is even working. I need to see what I messed up on my site for that and the reblog buttons. Good work...
@jackbaty and @am1t, I think I figured out my issues! I had somehow managed to use some _really_ different template files. I'm not even going to pretend to understand how...
@scripting, the main issue is with all of the scripts and stylesheets included in index.html. If you leave that file as-is and try to use HTTPS, it doesn't work, because...
> At the moment, the About tabs are not loading content on any of the blogs from this thread that are otherwise working well under https, mine included (https://rudimentarylathe.org/?tab=about). See...
@jackbaty, I got this to work ([proof here](https://trevormanternach.com/?tab=about)), but it is a huge mess that I don't think is sustainable. I am not actually running the httpproxy node app myself....
> what's the question, as concisely as possilble? @scripting, Would it be possible to serve httpproxy.scripting.com via http and https? ;-)
I just answered your question. :-D I'm not actually asking for anything myself right now.
I got this to work using nginx on my domain's server. It's a really simple code block in nginx: ``` server { listen 80; server_name trevormanternach.com www.trevormanternach.com; location / {...
@jackbaty I've never used Caddy before, but I just hacked around enough to come up with this Caddyfile: ``` http://localhost:2017 { rewrite / /trvr reverse_proxy oldschool.scripting.com:80 { header_up Host {upstream_hostport}...