nginx.conf 218 B

12345678910111213
  1. worker_processes 1;
  2. event { worker_connections 1024 };
  3. http {
  4. server {
  5. listen 80;
  6. server_name 192.168.253.189;
  7. access_log /var/log/nginx/fuck.log;
  8. root /usr/bi-web;
  9. index index.html index.htm;
  10. location / {
  11. }
  12. }
  13. }