nginx.conf 236 B

12345678910
  1. server {
  2. listen 80;
  3. server_name localhost;
  4. #access_log /var/log/nginx/host.access.log main;
  5. location / {
  6. root /usr/share/nginx/html;
  7. autoindex on;
  8. #index index.html index.htm;
  9. }
  10. }