GeoToolsHub / nginx.conf
gauthamnairy's picture
Update nginx.conf
382c5da verified
raw
history blame contribute delete
209 Bytes
user nginx;
worker_processes 1;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
include /etc/nginx/conf.d/*.conf;
}