+
+
+
+
+
+
Kind Acts Pool
+
+
+
+ Total Active Flow:{" "}
+ ${totalFlow.toLocaleString()} / hr
+
+
-
Community Stream Source
-
-
-
- Total Active Flow: ${totalFlow.toLocaleString()}{" "}
- / hr
-
+
+
+
+
+
Your Allocation Power
+
+
{userAllocationPower}%
+
+ Based on {userKindnessScore} acts of kindness
+
+
Do more kindness to increase your influence
diff --git a/docker-compose.yml b/docker-compose.yml
deleted file mode 100644
index b0b635c..0000000
--- a/docker-compose.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-services:
- kindness-fund-website:
- build:
- context: .
- dockerfile: Dockerfile
- container_name: kindness-fund-website
- restart: unless-stopped
- ports:
- - "3001:3000"
- environment:
- - NODE_ENV=production
- networks:
- - web
-
-networks:
- web:
- external: true
diff --git a/next.config.mjs b/next.config.mjs
index 10ddff2..5501ef9 100644
--- a/next.config.mjs
+++ b/next.config.mjs
@@ -1,13 +1,12 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
- output: 'standalone',
typescript: {
ignoreBuildErrors: true,
},
images: {
unoptimized: true,
},
-
+
}
export default nextConfig
\ No newline at end of file
diff --git a/nginx/dokindthings.fund.conf b/nginx/dokindthings.fund.conf
deleted file mode 100644
index da9ac35..0000000
--- a/nginx/dokindthings.fund.conf
+++ /dev/null
@@ -1,46 +0,0 @@
-server {
- listen 80;
- listen [::]:80;
- server_name dokindthings.fund www.dokindthings.fund;
-
- # Redirect HTTP to HTTPS
- return 301 https://$server_name$request_uri;
-}
-
-server {
- listen 443 ssl http2;
- listen [::]:443 ssl http2;
- server_name dokindthings.fund www.dokindthings.fund;
-
- # SSL Certificate paths (update these with your actual certificate paths)
- ssl_certificate /etc/letsencrypt/live/dokindthings.fund/fullchain.pem;
- ssl_certificate_key /etc/letsencrypt/live/dokindthings.fund/privkey.pem;
-
- # SSL configuration
- ssl_protocols TLSv1.2 TLSv1.3;
- ssl_ciphers HIGH:!aNULL:!MD5;
- ssl_prefer_server_ciphers on;
-
- # Logging
- access_log /var/log/nginx/dokindthings.fund.access.log;
- error_log /var/log/nginx/dokindthings.fund.error.log;
-
- # Proxy settings
- location / {
- proxy_pass http://localhost:3001;
- proxy_http_version 1.1;
- proxy_set_header Upgrade $http_upgrade;
- proxy_set_header Connection 'upgrade';
- proxy_set_header Host $host;
- proxy_cache_bypass $http_upgrade;
- proxy_set_header X-Real-IP $remote_addr;
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
- proxy_set_header X-Forwarded-Proto $scheme;
- }
-
- # Security headers
- add_header X-Frame-Options "SAMEORIGIN" always;
- add_header X-XSS-Protection "1; mode=block" always;
- add_header X-Content-Type-Options "nosniff" always;
- add_header Referrer-Policy "no-referrer-when-downgrade" always;
-}