Documentation/nginx.conf

14 lines
148 B
Nginx Configuration File
Raw Permalink Normal View History

2021-08-16 21:34:57 -04:00
worker_processes 4;
events {
worker_connections 1024;
}
http {
server {
listen 80;
2021-08-16 21:55:09 -04:00
root /usr/bin/cre;
2021-08-16 21:34:57 -04:00
include /etc/nginx/mime.types;
}
}