Rewrite all requests which no longer exist to domain.
Continue reading
Category Archives: Servers
NginX with Web2py: Forcing a url to use a single domain
I have for some time wanted to find a simple way to force a domain into a single address www.domain or http://domain with web2py using routes.py and nginx. I did a bit of research more than a few times into routes.py and the mapping system seemed a bit confusing and time consuming for me to take my existing routed domains and make the necessary changes. So I began to look at the server configuration and here is what I came up with after a bit of research.
Continue reading
Simple IPTables command for reference.
iptables -A INPUT -p tcp --dport 8118 -s 1.2.3.4 -j ACCEPT iptables -A INPUT -p tcp --dport 8118 -j DROP
Multiple Web2py Instances with uWSGI Emperor and NginX
I figured out how to run multiple instances of web2py. In case I ever wanted to offer hosting for this service.
Here is how I did it.
Continue reading