29 lines
678 B
Nginx Configuration File
29 lines
678 B
Nginx Configuration File
worker_processes 1;
|
|
|
|
#worker_rlimit_nofile 65535;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
lua_package_path '$profix/src/?/?.lua;$profix/src/?.lua;;';
|
|
lua_package_cpath '$profix/src/share/lib/?.so;;';
|
|
|
|
include system/user.conf
|
|
# Path of the file with trusted CA certificates.
|
|
#lua_ssl_trusted_certificate /etc/ssl/certs/ca-certificates.crt;
|
|
|
|
# The verification depth in the server certificates chain.
|
|
#lua_ssl_verify_depth 3;
|
|
|
|
server {
|
|
listen 9080;
|
|
server_name 127.0.0.1;
|
|
default_type text/html;
|
|
location = /favicon.ico {
|
|
log_not_found off;
|
|
access_log off;
|
|
}
|
|
}
|
|
} |