Created
July 23, 2019 02:52
-
-
Save nhtzr/bde726bfb1b8864acbefe82473a6516f to your computer and use it in GitHub Desktop.
File listing http server nginx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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