AuthPlatform/conf/nginx.conf

29 lines
678 B
Nginx Configuration File
Raw Normal View History

2025-09-27 15:14:13 +08:00
worker_processes 1;
#worker_rlimit_nofile 65535;
2025-09-27 15:14:13 +08:00
events {
2025-09-27 15:14:13 +08:00
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
2025-10-14 14:45:47 +08:00
# 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 {
2025-09-27 15:14:13 +08:00
listen 9080;
server_name 127.0.0.1;
default_type text/html;
location = /favicon.ico {
log_not_found off;
access_log off;
}
}
2025-09-27 15:14:13 +08:00
}