Javascript enthusiast, coder, and developer @ Revmakx. I work in Node, Angular and sometimes in hybrid apps. We can build it!
Nothing here yet.
No blogs yet.
How do you guys force a redirect to https for an arbitrary domain? Am stuck in it Facing too many redirects server { listen 443 ssl; ssl_certificate_by_lua_block { auto_ssl:ssl_certificate() } location / { proxy_pass http://localhost:4444; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection 'upgrade'; proxy_set_header Host $host; proxy_cache_bypass $http_upgrade; proxy_redirect off; #try_files $uri $uri/ /; } location @rewrites { rewrite ^(.+)$ / last; } ssl_certificate /etc/letsencrypt/live/mydomain/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/mydomain/privkey.pem; } server { listen 80; location /.well-known/acme-challenge/ { content_by_lua_block { auto_ssl:challenge_server() } } location / { return 301 https://$host$request_uri; } }
I have built a couple of apps with electron, i loved building it. Am a web developer who predominantly codes front end with angular and backend with node, it was so easy for me to jump in and start building it. Their Docs were great most of the things are self explanatory. The community is good , there are lot of answers you could find in stack overflow. I haven't had any issues with electron so far other few performance problems with webview. Just go for it :)