initial commit

This commit is contained in:
2026-06-22 21:27:15 +07:00
commit 8068f8910b
18 changed files with 208 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule . /index.html [L]
</IfModule>
+8
View File
@@ -0,0 +1,8 @@
FROM nginx:alpine
COPY default.conf /etc/nginx/conf.d/default.conf
COPY . /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]
Binary file not shown.
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 725 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 696 KiB

+38
View File
@@ -0,0 +1,38 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location = / {
return 301 /homepage;
}
location /_next/static/ {
expires 365d;
add_header Cache-Control "public, immutable";
}
location /assets/ {
expires 30d;
add_header Cache-Control "public";
}
location /fonts/ {
expires 365d;
add_header Cache-Control "public, immutable";
}
location ~* \.apk$ {
default_type application/vnd.android.package-archive;
expires 30d;
add_header Cache-Control "public";
}
location / {
try_files $uri $uri.html $uri/index.html =404;
}
error_page 404 /404.html;
}
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 933 B

+14
View File
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/icon.png" sizes="32x32" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>IntelliSight</title>
<script type="module" crossorigin src="/assets/index-Df4BJX0o.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-Cc-EDr-X.css">
</head>
<body>
<div id="root"></div>
</body>
</html>