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...

How to config multi servers(second domain name server) with one server {} in your nginx.conf

config sample:

server {
    listen       80;
    server_name  ~^(.+)?\.errong\.win$;
    if ($host = errong.win) {
        rewrite ^ http://www.errong.win permanent;
    }

    #charset koi8-r;

    #access_log  logs/host.access.log  main;

    location / {
        root   vhosts/$1;
        index  index.html index.htm;
    }
}



Explaination:

1. my domain name is "errong.win",you should replace it with yours.
2. "vhosts" is my root directory, you should replace it with yours too.
3. The path tree of your root directory should like:


errong_leng@blogvpn:~/local/nginx$ ls vhosts/ -all
total 16
drwxrwxr-x  4 errong_leng errong_leng 4096 May 18 02:57 .
drwxrwxr-x 12 errong_leng errong_leng 4096 May 18 02:12 ..
drwxrwxr-x  2 errong_leng errong_leng 4096 May 18 03:05 blog
drwxrwxr-x  2 errong_leng errong_leng 4096 May 18 02:42 freevpn
lrwxrwxrwx  1 errong_leng errong_leng    4 May 18 02:54 www -> blog

PS: due to below codes in conf,
    if ($host = errong.win) {
        rewrite ^ http://www.errong.win permanent;
    }

http://errong.win will same as http://www.errong.win.
And I make a soft link of www to blog.

Remember reload your nginx server 
sudo sbin/nginx -s reload 

So http://errong.win and http://www.errong.win will show same website like 
http://blog.errong.win










❤️ Support This Blog


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


Comments

Popular Posts

2026 Begins: Choosing to Stay on the Path as a Blogger

Health Checks and Scaling Strategies for Next.js in Kubernetes