mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
c750f56954
* +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
31 lines
518 B
Nginx Configuration File
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;
|
|
}
|
|
|
|
}
|
|
|
|
} |