chawin.chen commited on
Commit ·
dfa8206
1
Parent(s): 8ab96e4
fix
Browse files- nginx/conf.d/nginx-ui.conf +2 -3
- www/privacy/index.html +124 -0
nginx/conf.d/nginx-ui.conf
CHANGED
|
@@ -44,9 +44,8 @@ server {
|
|
| 44 |
location /nginx-ui/ {
|
| 45 |
proxy_pass http://127.0.0.1:9000/;
|
| 46 |
}
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
auth_basic_user_file /etc/nginx/conf.d/.htpasswd;
|
| 50 |
root /var/www;
|
| 51 |
index index.html index.htm;
|
| 52 |
}
|
|
|
|
| 44 |
location /nginx-ui/ {
|
| 45 |
proxy_pass http://127.0.0.1:9000/;
|
| 46 |
}
|
| 47 |
+
|
| 48 |
+
location /privacy {
|
|
|
|
| 49 |
root /var/www;
|
| 50 |
index index.html index.htm;
|
| 51 |
}
|
www/privacy/index.html
ADDED
|
@@ -0,0 +1,124 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="utf-8">
|
| 5 |
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
| 6 |
+
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
| 7 |
+
<title>Privacy Policy</title>
|
| 8 |
+
<style>
|
| 9 |
+
:root {
|
| 10 |
+
color-scheme: light;
|
| 11 |
+
--bg: #f6f3ef;
|
| 12 |
+
--card: #ffffff;
|
| 13 |
+
--ink: #1f2328;
|
| 14 |
+
--muted: #5e6a75;
|
| 15 |
+
--accent: #f05a28;
|
| 16 |
+
}
|
| 17 |
+
* {
|
| 18 |
+
box-sizing: border-box;
|
| 19 |
+
}
|
| 20 |
+
body {
|
| 21 |
+
margin: 0;
|
| 22 |
+
background: radial-gradient(circle at top, #fff6ea 0%, var(--bg) 55%, #efe7df 100%);
|
| 23 |
+
color: var(--ink);
|
| 24 |
+
font-family: "Georgia", "Times New Roman", serif;
|
| 25 |
+
line-height: 1.6;
|
| 26 |
+
}
|
| 27 |
+
main {
|
| 28 |
+
max-width: 860px;
|
| 29 |
+
margin: 0 auto;
|
| 30 |
+
padding: 48px 24px 72px;
|
| 31 |
+
}
|
| 32 |
+
.card {
|
| 33 |
+
background: var(--card);
|
| 34 |
+
border-radius: 18px;
|
| 35 |
+
padding: 32px 36px;
|
| 36 |
+
box-shadow: 0 20px 60px rgba(31, 35, 40, 0.12);
|
| 37 |
+
border: 1px solid rgba(240, 90, 40, 0.12);
|
| 38 |
+
}
|
| 39 |
+
h1 {
|
| 40 |
+
font-size: 2.3rem;
|
| 41 |
+
margin: 0 0 10px;
|
| 42 |
+
}
|
| 43 |
+
h2 {
|
| 44 |
+
margin: 28px 0 8px;
|
| 45 |
+
font-size: 1.3rem;
|
| 46 |
+
}
|
| 47 |
+
p {
|
| 48 |
+
margin: 0 0 14px;
|
| 49 |
+
color: var(--muted);
|
| 50 |
+
}
|
| 51 |
+
strong {
|
| 52 |
+
color: var(--ink);
|
| 53 |
+
}
|
| 54 |
+
.meta {
|
| 55 |
+
font-size: 0.95rem;
|
| 56 |
+
margin-bottom: 22px;
|
| 57 |
+
}
|
| 58 |
+
.highlight {
|
| 59 |
+
color: var(--ink);
|
| 60 |
+
background: rgba(240, 90, 40, 0.08);
|
| 61 |
+
padding: 12px 14px;
|
| 62 |
+
border-radius: 10px;
|
| 63 |
+
}
|
| 64 |
+
footer {
|
| 65 |
+
margin-top: 32px;
|
| 66 |
+
font-size: 0.95rem;
|
| 67 |
+
color: var(--muted);
|
| 68 |
+
}
|
| 69 |
+
</style>
|
| 70 |
+
</head>
|
| 71 |
+
<body>
|
| 72 |
+
<main>
|
| 73 |
+
<div class="card">
|
| 74 |
+
<h1>Privacy Policy</h1>
|
| 75 |
+
<p class="meta"><strong>Last updated:</strong> January 28, 2026</p>
|
| 76 |
+
|
| 77 |
+
<p class="highlight">
|
| 78 |
+
Our app provides a face attractiveness score. We do not store any user data.
|
| 79 |
+
</p>
|
| 80 |
+
|
| 81 |
+
<h2>Information We Process</h2>
|
| 82 |
+
<p>
|
| 83 |
+
When you upload a photo, the image is used only to generate a score. The photo is processed
|
| 84 |
+
to detect facial features and produce the result. We do not ask you to create an account or
|
| 85 |
+
provide personal information.
|
| 86 |
+
</p>
|
| 87 |
+
|
| 88 |
+
<h2>Data Retention</h2>
|
| 89 |
+
<p>
|
| 90 |
+
We do not store uploaded photos, analysis data, or results. Images are processed transiently
|
| 91 |
+
and deleted immediately after the score is generated.
|
| 92 |
+
</p>
|
| 93 |
+
|
| 94 |
+
<h2>Data Sharing</h2>
|
| 95 |
+
<p>
|
| 96 |
+
We do not sell, rent, or share your data with third parties. We do not run advertising or
|
| 97 |
+
analytics that track users across apps or websites.
|
| 98 |
+
</p>
|
| 99 |
+
|
| 100 |
+
<h2>Children's Privacy</h2>
|
| 101 |
+
<p>
|
| 102 |
+
The app is not directed to children under 13. We do not knowingly collect personal
|
| 103 |
+
information from children.
|
| 104 |
+
</p>
|
| 105 |
+
|
| 106 |
+
<h2>Security</h2>
|
| 107 |
+
<p>
|
| 108 |
+
We take reasonable measures to protect your data in transit. Since we do not store your
|
| 109 |
+
photos or results, there is no retained personal data.
|
| 110 |
+
</p>
|
| 111 |
+
|
| 112 |
+
<h2>Contact</h2>
|
| 113 |
+
<p>
|
| 114 |
+
If you have questions about this privacy policy, contact us at
|
| 115 |
+
<strong>support@example.com</strong>.
|
| 116 |
+
</p>
|
| 117 |
+
|
| 118 |
+
<footer>
|
| 119 |
+
By using the app, you agree to this privacy policy.
|
| 120 |
+
</footer>
|
| 121 |
+
</div>
|
| 122 |
+
</main>
|
| 123 |
+
</body>
|
| 124 |
+
</html>
|