nginx.conf 161 B

123456789
  1. server {
  2. listen 9000;
  3. server_name localhost;
  4. location / {
  5. root /usr/share/nginx/html;
  6. index index.html index.htm;
  7. }
  8. }