uWSGI is a software application that “aims at developing a full stack for building hosting services”. Web server NGINX is a free, open-source, high-performance HTTP server. Add to niginx’s config proxy location section: proxy_connect_timeout 600;proxy_send_timeout 600;proxy_read_timeout 600;send_timeout 600;uwsgi_read_timeout 600; Also you should increase a harakiri timeout in uwsgi.ini harakiri = 600 And reload configurations for uwsgi and nginx systemctl restart uwsgi # or touch reloadContinue Reading
Tag: NGINX
How to use Let’s Encrypt for NGINX on Ubuntu
Let’s Encrypt is an SSL certificate authority managed by the Internet Security Research Group. Web server NGINX is a free, open-source, high-performance HTTP server. You can use HTTPS (an extension of HTTP with SSL / TLS encryption) on your website to secure connection. Install packages: apt updateapt install -y \ python-software-properties software-properties-common add-apt-repository ppa:certbot/certbot apt update aptContinue Reading
Popular nginx parameters
Web server NGINX is a free, open-source, high-performance HTTP server. Also you can use it as a reverse proxy, and IMAP/POP3 proxy server. It has many plugins to extend its functionality. Probably NGINX is the most popular web server of all. Because even if you use Apache, you should use NGINX to serve static files. CommandsContinue Reading