A New Collection of Thoughtful Learning Apps — Now Available on iOS & Android

Image
I’m excited to share a set of mobile apps I’ve recently completed and published on both the Google Play Store and the Apple App Store. These apps are designed with a simple goal in mind: to make meaningful, structured content more accessible, whether you’re studying theology or improving your English vocabulary. 📱 Now Available on Both Platforms All apps are live and available for download: Google Play Developer Page: https://play.google.com/store/apps/dev?id=5835943159853189043 Apple App Store Developer Page: https://apps.apple.com/ca/developer/q-z-l-corp/id1888794100 📖 Theology & Confession Study Apps For those interested in Reformed theology and classical Christian teachings, I’ve developed a series of apps that present foundational texts in a clean, focused reading format: The Belgic Confession Canons of Dort Heidelberg Catechism Westminster Shorter Catechism Each app is designed to provide a distraction-free experience, making it easier to read, reflect, and revisit these im...

The best way to force http request redirect to https in nginx

Use 301 redirect.
 
    server {
        listen  80;
        server_name blog.errong.win;
        return 301 https://$server_name$request_uri;
    }

    server {
        listen  80;
        server_name freevpn.errong.win;
        return 301 https://$server_name$request_uri;
    }

    server {
        listen  80;
        server_name www.errong.win errong.win;
        return 301 https://$server_name$request_uri;
    }

    server {
        listen       443 ssl;

        ssl_certificate      /etc/letsencrypt/live/errong.win/fullchain.pem;
        ssl_certificate_key  /etc/letsencrypt/live/errong.win/privkey.pem;

        ssl_session_cache    shared:SSL:1m;
        ssl_session_timeout  5m;

        ssl_ciphers  HIGH:!aNULL:!MD5;
        ssl_prefer_server_ciphers  on;

        server_name  ~^(.+)?\.errong\.win$;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   vhosts/$1;
            index  index.html index.htm;
        }
   } 
 
Remember reload your nginx server 
sudo sbin/nginx -s reload 

You can check with developer tool:
 

❤️ Support This Blog


If this post helped you, you can support my writing with a small donation. Thank you for reading.


Comments