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; } }
We are also using the same lua-resty-auto-ssl it works great:). By the way, there are few rate limits imposed by letsencrypt like you can create 50 certificates per week. Here you can check it out https://letsencrypt.org/docs/rate-limits/. Just curious How you gonna tackle this thing?
I learned lots of basic programming stuff from udacity. They have a series of courses which is available for free to learn. You could start with the intro to computer science. All the courses were taught by the industry experts around the world. https://www.udacity.com/.
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 :)
Yeah We got hunted on producthunt for one of app,Here is the link https://www.producthunt.com/posts/manageyum. Results were really good we got more than 2k downloads in a day. I find its a good place to get the early traction, you will get meaningful feedbacks from the community