Add the following in “/etc/nginx/nginx.conf”: location /nginx_status { # Turn on stats stub_status on; access_log off; # only allow access from 192.168.1.5 # Replace with my IP address allow 192.168.1.5; deny all; } Restart Nginx and now you can visit the status page: http://nginx_server_url/nginx_status It will display something like this: Active connections: 7 server accepts ..
Category : Web Server
Home » Archive by category : Web Server
https://www.npmjs.com/package/http-server Good for local testing. http-server . -p 9080 This will run web server on http://loca..