From aacc0df179147bcd900dd753003e567ea1bc88ee Mon Sep 17 00:00:00 2001 From: jose Date: Tue, 23 Feb 2021 11:13:56 +0800 Subject: [PATCH] v6.8.8 1. Add user login function. 2. Add the first professional plug-in Nginx WAF. 3. Release a new version of the online editor. 4. Fixed some bugs. --- vhost/apache/0.default.conf | 6 +++--- vhost/nginx/0.default.conf | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/vhost/apache/0.default.conf b/vhost/apache/0.default.conf index 4c790d4f..e626216b 100644 --- a/vhost/apache/0.default.conf +++ b/vhost/apache/0.default.conf @@ -1,13 +1,13 @@ ServerAdmin webmaster@example.com - DocumentRoot "/www/server/panel/data" + DocumentRoot "/www/server/apache/htdocs" ServerName bt.default.com - + SetOutputFilter DEFLATE Options FollowSymLinks AllowOverride All Order allow,deny Allow from all - DirectoryIndex empty.html + DirectoryIndex index.html \ No newline at end of file diff --git a/vhost/nginx/0.default.conf b/vhost/nginx/0.default.conf index fd3965d0..7a73121a 100644 --- a/vhost/nginx/0.default.conf +++ b/vhost/nginx/0.default.conf @@ -2,6 +2,6 @@ server { listen 80; server_name _; - index empty.html; - root /www/server/panel/data; + index index.html; + root /www/server/nginx/html; } \ No newline at end of file