You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

nginx.conf 393B

1234567891011121314151617181920
  1. events {
  2. }
  3. worker_processes 1;
  4. pid ${TMPDIR}/nginx.pid;
  5. error_log ${TMPDIR}/error.log;
  6. http {
  7. default_type application/octet-stream;
  8. sendfile on;
  9. server {
  10. # no need for root privileges
  11. listen ${NGINX_ADDR}:${NGINX_PORT};
  12. server_name localhost;
  13. location / {
  14. root ${TMPDIR};
  15. autoindex on;
  16. }
  17. }
  18. }