nginx
plain text/index/debug
worker_processes 5; ## Default: 1
location /code/ {
location ~* { # All files in it
add_header Content-Type text/plain; # Display file as text
}
}
location /sub_dir {
autoindex on; # list dir files
autoindex_exact_size off;
charset utf-8;
root /root_path
error_log /var/logs/nginx/debug.log debug; # Debug
# debug, info, notice, warn, error, crit, alert, or emerg
}Forward Proxy
Reverse Proxy
For Google
Last updated