ice-static 3 kuukautta sitten
commit
55d4fb6297
7 muutettua tiedostoa jossa 153 lisäystä ja 0 poistoa
  1. 39 0
      .gitignore
  2. 1 0
      .htaccess
  3. 1 0
      .user.ini
  4. 7 0
      404.html
  5. 39 0
      index.html
  6. 51 0
      package-lock.json
  7. 15 0
      package.json

+ 39 - 0
.gitignore

@@ -0,0 +1,39 @@
+# Dependencies
+node_modules/
+
+# Logs
+logs/
+
+# Sensitive config (contains passwords and keys)
+config.json
+
+# OS files
+.DS_Store
+Thumbs.db
+ehthumbs.db
+Desktop.ini
+
+# IDE
+.vscode/
+.idea/
+*.swp
+*.swo
+*~
+
+# Environment
+.env
+.env.local
+.env.*.local
+
+# Runtime
+*.pid
+*.seed
+*.pid.lock
+
+# Coverage
+coverage/
+.nyc_output/
+
+# Build
+dist/
+build/

+ 1 - 0
.htaccess

@@ -0,0 +1 @@
+ 

+ 1 - 0
.user.ini

@@ -0,0 +1 @@
+open_basedir=/www/wwwroot/parse/:/tmp/

+ 7 - 0
404.html

@@ -0,0 +1,7 @@
+<html>
+<head><title>404 Not Found</title></head>
+<body>
+<center><h1>404 Not Found</h1></center>
+<hr><center>nginx</center>
+</body>
+</html>

+ 39 - 0
index.html

@@ -0,0 +1,39 @@
+<!doctype html>
+<html>
+<head>
+    <meta charset="utf-8">
+    <title>恭喜,站点创建成功!</title>
+    <style>
+        .container {
+            width: 60%;
+            margin: 10% auto 0;
+            background-color: #f0f0f0;
+            padding: 2% 5%;
+            border-radius: 10px
+        }
+
+        ul {
+            padding-left: 20px;
+        }
+
+            ul li {
+                line-height: 2.3
+            }
+
+        a {
+            color: #20a53a
+        }
+    </style>
+</head>
+<body>
+    <div class="container">
+        <h1>恭喜, 站点创建成功!</h1>
+        <h3>这是默认index.html,本页面由系统自动生成</h3>
+        <ul>
+            <li>本页面在FTP根目录下的index.html</li>
+            <li>您可以修改、删除或覆盖本页面</li>
+            <li>FTP相关信息,请到“面板系统后台 > FTP” 查看</li>
+        </ul>
+    </div>
+</body>
+</html>

+ 51 - 0
package-lock.json

@@ -0,0 +1,51 @@
+{
+  "name": "parse",
+  "version": "1.0.0",
+  "lockfileVersion": 3,
+  "requires": true,
+  "packages": {
+    "": {
+      "name": "parse",
+      "version": "1.0.0",
+      "license": "ISC",
+      "dependencies": {
+        "@fmode/studio": "^0.0.12"
+      }
+    },
+    "node_modules/@fmode/studio": {
+      "version": "0.0.12",
+      "resolved": "https://registry.npmmirror.com/@fmode/studio/-/studio-0.0.12.tgz",
+      "integrity": "sha512-CTthYDLTJttF4eEakru4dI4Bdk3s/VLiIvaWBHdrznRAzHkabZcGZD0Ebig13/IS3U+zIYsVGyi8FeDJI5l5TQ==",
+      "cpu": [
+        "x64",
+        "arm64"
+      ],
+      "license": "ISC",
+      "os": [
+        "darwin",
+        "linux",
+        "win32"
+      ],
+      "dependencies": {
+        "commander": "^14.0.0"
+      },
+      "bin": {
+        "fmode": "bin/fmode.js",
+        "studio": "bin/fmode.js"
+      },
+      "engines": {
+        "bun": ">=1.0.0",
+        "node": ">=18.0.0"
+      }
+    },
+    "node_modules/commander": {
+      "version": "14.0.3",
+      "resolved": "https://registry.npmmirror.com/commander/-/commander-14.0.3.tgz",
+      "integrity": "sha512-H+y0Jo/T1RZ9qPP4Eh1pkcQcLRglraJaSLoyOtHxu6AapkjWVCy2Sit1QQ4x3Dng8qDlSsZEet7g5Pq06MvTgw==",
+      "license": "MIT",
+      "engines": {
+        "node": ">=20"
+      }
+    }
+  }
+}

+ 15 - 0
package.json

@@ -0,0 +1,15 @@
+{
+  "name": "parse",
+  "version": "1.0.0",
+  "description": "",
+  "license": "ISC",
+  "author": "",
+  "type": "commonjs",
+  "main": "index.js",
+  "scripts": {
+    "test": "echo \"Error: no test specified\" && exit 1"
+  },
+  "dependencies": {
+    "@fmode/studio": "^0.0.12"
+  }
+}