Problem : I am using a 5.6 kernel with kTLS feature enabled (shown below): CONFIG_TLS=y CONFIG_TLS_DEVICE=y While installing nginx with […]
Tag: nginx
Connection failure after setting SSL on nginx
Problem : Im trying to set up https for a client on nginx and failing miserably After uploading the certificate […]
Setting up a local development environment with nginx on Linux (ubuntu)
Problem : I recently moved to a new computer, and copied over all existing git repositories for webdevelopment projects from […]
nginx doesn’t read mounted /usr/share/nginx/html
Problem : Goal: I am using an NGINX container in which I mount a remote SSHFS filesystem into /usr/share/nginx/html, the […]
Updating NGINX from debian-buster repo to nginx-repo
Problem : When I try to update my nginx version (installed from debian repository) to the latest version from the […]
Switch user for executing processes with API on Nginx/Ubuntu
Problem : I would like to create an API using Nginx (on Ubuntu server) that is able to run processes […]
Running nginx as the current user
Problem : On my linux PC, I’d like to run nginx as whatever user I’m logged into when I start […]
Quick SSH proxy or routing?
Problem : I have experience with using nginx to proxy sites with the proxy_pass directive. Is there something similar I […]
Increased traffic – Server probed by bots?
Problem : Since December 24 my server experiences increased resource consumption. Additionally the Nginx server seems to be unstable which […]
nginx keeps redirecting to welcome page
QUESTION : I am using the following config: server { listen 80; server_name 192.168.1.10; location /shutter { proxy_pass http://192.168.1.10:8989; proxy_set_header […]