To disable TLSv1 in nginx, add ssl_protocols TLSv1.1 TLSv1.2; in your server config. if you are … Disable TLSv1 in NginxRead more
Nginx
Nginx Config for Laravel Application
Here is Nginx configuration for a laravel application server { listen 80; server_name www.domain.com; access_log /var/log/nginx/domain.com.log; … Nginx Config for Laravel ApplicationRead more
Nginx Config for Laravel Application in sub folder
To run Laravel Application on a subfolder of a website, use the following configuration. If you … Nginx Config for Laravel Application in sub folderRead more
Configure Nginx to listen on single IP Address
By default Nginx listens on all IP address on a server. To make nginx listen on … Configure Nginx to listen on single IP AddressRead more
Nginx Password Protect a website
To password protect a website, you need to install htpasswd utility. On Ubuntu/Debian, you can install … Nginx Password Protect a websiteRead more
Nginx Location Directive
Nginx Location Directive is used to route request to correct files. Match Exact match is used … Nginx Location DirectiveRead more
Show Real IP Nginx Behind Reverse Proxy
When your Nginx web server is running behind a reverse proxy, you will see IP of … Show Real IP Nginx Behind Reverse ProxyRead more
Nginx HTTP 414 request-URI too large
On a Nginx server, when accessing a long url, i get error HTTP 414 Request-URI Too … Nginx HTTP 414 request-URI too largeRead more
Nginx show full url in access log
To show the full URL in the nginx access log, add the following If you are … Nginx show full url in access logRead more
Nginx remove html from url
If you have a static website build using plain html files, your url will look like … Nginx remove html from urlRead more