Disable TLSv1 in Nginx
To disable TLSv1 in nginx, add ssl_protocols TLSv1.1 TLSv1.2; in your server config. if you are using letsencrypt SSL, edit file vi…
To disable TLSv1 in nginx, add ssl_protocols TLSv1.1 TLSv1.2; in your server config. if you are using letsencrypt SSL, edit file vi…
After installing SSL on Nginx server, rails application login page stopped working. On log file (log/production.log), found following error HTTP Origin header…
On a high traffic web site, i want to disable access log as we are hitting I/O Limit. Since we don’t use…
To enable directory listing in Nginx, add following to server configuration. autoindex on; Example server { listen 80 default_server; listen [::]:80 default_server;…
here is nginx configuration i used for a video site that have secure link. server { listen 188.40.131.92:80; server_name s1.video.bizhat.com; access_log /var/log/nginx/s1.video.bizhat.com.log;…
On Nginx server, when uploading large file, i get error On nginx error log To fix, edit nginx config for the web…
When using Nginx Behind Cloudflare, logs and web applications show Cloudflare sever IP instead of visitor IP. To fix this, edit Inside…
To disable access to folder /admin in Nginx, add following to server block of your web site. location /admin { deny all;…
Here is nginx config used for RTMP streaming. user nginx; worker_processes 1; worker_rlimit_nofile 300000; events { worker_connections 16000; use epoll; } rtmp_auto_push…
wildcard virtual host allow you to host multiple web sites with one configuration file. Here is what i use for bizhat.com free…
Today i moved a high traffic WordPress web using from Apache + PHP 5 to Nginx + PHP 7.2. Here is a…
To configure Nginx as a proxy, use the following configuration If you need to serve images using static files, add the following…