view host/startup/nginx/nginx.conf.luan @ 1648:224af797b1f9

Mainly small install script improvements - Consistent usage of `$LUANHOME`, removed reliance on current directory. - Made Luan build and install fine (on Linux) without requiring launching it via sudo. Only asks to elevate privileges if installation failed. - Minor spelling mistake fix.
author Fox
date Mon, 28 Mar 2022 18:00:12 +0200
parents 0344a535b1db
children 32c6b085bb83
line wrap: on
line source

local rootDir, user, group = ...

%>
worker_processes  4;
user <%=user%> <%=group%>;

events {
	worker_connections  4096;
}

http { 
	include mime.types;
	default_type application/octet-stream;
	sendfile on;
	keepalive_timeout 65;

	proxy_cache_path <%=rootDir%>/local/nginx_cache levels=1:2 keys_zone=nginx_cache:60m max_size=10g inactive=60m use_temp_path=off;

	upstream luan {
		server 127.0.0.1:8080;
	}

	server {
		listen 80 default_server;
		include nginx.default.conf;
	}

	include <%=rootDir%>/sites/*/nginx.ssl.conf;
}
<%