pantry/projects/nginx.org/nginx.conf
Marc Seitz c750f56954
+nginx.org (#417)
* +nginx.org

* add comment re: pcre2

* fix test case

* fix test case

* nginx test relocatable

* nginx test relocatable

* change nginx port to 8080 for test

* fix darwin test
2023-02-23 09:38:24 -05:00

31 lines
518 B
Nginx Configuration File

daemon off;
worker_processes 2;
user www-data;
events {
use epoll;
worker_connections 128;
}
error_log logs/error.log info;
http {
server_tokens off;
include mime.types;
charset utf-8;
access_log logs/access.log combined;
server {
server_name localhost;
listen 127.0.0.1:80;
error_page 500 502 503 504 /50x.html;
location / {
root html;
}
}
}