From 1cbe9d90e1aca6a09308ebf551ba387cf8035330 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Daniel=20Colmenares=20Oviedo?= Date: Thu, 28 Aug 2025 13:29:17 -0400 Subject: sysutils/nginx-ui: New port: Yet another WebUI for Nginx Nginx UI is a comprehensive web-based interface designed to simplify the management and configuration of Nginx single-node and cluster nodes. It offers real-time server statistics, Nginx performance monitoring, AI-powered ChatGPT assistance, the code editor that supports LLM Code Completion, one-click deployment, automatic renewal of Let's Encrypt certificates, and user-friendly editing tools for website configurations. Additionally, Nginx UI provides features such as online access to Nginx logs, automatic testing and reloading of configuration files, a web terminal, dark mode, and responsive web design. Built with Go and Vue, Nginx UI ensures a seamless and efficient experience for managing your Nginx server. --- sysutils/nginx-ui/files/nginx.conf | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 sysutils/nginx-ui/files/nginx.conf (limited to 'sysutils/nginx-ui/files/nginx.conf') diff --git a/sysutils/nginx-ui/files/nginx.conf b/sysutils/nginx-ui/files/nginx.conf new file mode 100644 index 000000000000..7aca8a6e8f82 --- /dev/null +++ b/sysutils/nginx-ui/files/nginx.conf @@ -0,0 +1,37 @@ +user www; +worker_processes auto; + +error_log /var/log/nginx/error.log notice; +error_log /var/log/nginx/error.local.log notice; +pid /var/run/nginx.pid; + +load_module %%PREFIX%%/libexec/nginx/ngx_stream_module.so; + +events { + worker_connections 1024; +} + +stream { + include %%PREFIX%%/etc/nginx/streams-enabled/*; +} + +http { + include %%PREFIX%%/etc/nginx/mime.types; + default_type application/octet-stream; + + log_format main '$remote_addr - $remote_user [$time_local] "$request" ' + '$status $body_bytes_sent "$http_referer" ' + '"$http_user_agent" "$http_x_forwarded_for"'; + + access_log /var/log/nginx/access.log main; + + sendfile on; + #tcp_nopush on; + + keepalive_timeout 65; + + gzip on; + + include %%PREFIX%%/etc/nginx/conf.d/*.conf; + include %%PREFIX%%/etc/nginx/sites-enabled/*; +} -- cgit v1.2.3