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.
This commit is contained in:
jose
2021-02-23 11:13:56 +08:00
parent 55f0686910
commit aacc0df179
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -1,13 +1,13 @@
<VirtualHost *:80>
ServerAdmin webmaster@example.com
DocumentRoot "/www/server/panel/data"
DocumentRoot "/www/server/apache/htdocs"
ServerName bt.default.com
<Directory "/www/server/panel/data">
<Directory "/www/server/apache/htdocs">
SetOutputFilter DEFLATE
Options FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
DirectoryIndex empty.html
DirectoryIndex index.html
</Directory>
</VirtualHost>
+2 -2
View File
@@ -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;
}