Skip to content

Instantly share code, notes, and snippets.

@nhtzr
Created July 23, 2019 02:52
Show Gist options
  • Save nhtzr/bde726bfb1b8864acbefe82473a6516f to your computer and use it in GitHub Desktop.
Save nhtzr/bde726bfb1b8864acbefe82473a6516f to your computer and use it in GitHub Desktop.
File listing http server nginx
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/html;
charset utf-8;
location / {
autoindex on;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment