quicklify 0.1.10 → 0.1.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -101,6 +101,18 @@ Access Coolify: https://123.45.67.89:8000
101
101
 
102
102
  Visit the URL, create your admin account, and start deploying!
103
103
 
104
+ ## 🔒 Security Notes
105
+
106
+ **Important:** Port 8000 is publicly accessible after deployment.
107
+
108
+ **Recommended next steps:**
109
+ 1. **Add a domain** and enable SSL in Coolify settings
110
+ 2. Use **Cloudflare** for DDoS protection
111
+ 3. Set a **strong password** on first login
112
+ 4. Consider **IP whitelisting** for sensitive deployments
113
+
114
+ For production use, we recommend setting up a domain instead of using the IP address directly.
115
+
104
116
  ## 🌐 Supported Providers
105
117
 
106
118
  | Provider | Status | Starting Price | Architecture |
@@ -1 +1 @@
1
- {"version":3,"file":"cloudInit.d.ts","sourceRoot":"","sources":["../../src/utils/cloudInit.ts"],"names":[],"mappings":"AAAA,wBAAgB,mBAAmB,CAAC,UAAU,EAAE,MAAM,GAAG,MAAM,CA4B9D"}
1
+ {"version":3,"file":"cloudInit.d.ts","sourceRoot":"","sources":["../../src/utils/cloudInit.ts"],"names":[],"mappings":"AAAA,wBAAgB,mBAAmB,CAAC,UAAU,EAAE,MAAM,GAAG,MAAM,CAsC9D"}
@@ -19,6 +19,16 @@ curl -fsSL https://cdn.coollabs.io/coolify/install.sh | bash
19
19
  echo "Waiting for Coolify services to start..."
20
20
  sleep 30
21
21
 
22
+ # Open port 8000 for Coolify web interface
23
+ echo "Configuring firewall..."
24
+ iptables -A INPUT -p tcp --dport 8000 -j ACCEPT
25
+ iptables -A INPUT -p tcp --dport 22 -j ACCEPT
26
+ iptables -A INPUT -p tcp --dport 80 -j ACCEPT
27
+ iptables -A INPUT -p tcp --dport 443 -j ACCEPT
28
+ iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
29
+ iptables-save > /etc/iptables/rules.v4
30
+ DEBIAN_FRONTEND=noninteractive apt-get install -y iptables-persistent
31
+
22
32
  echo "=================================="
23
33
  echo "Coolify installation completed!"
24
34
  echo "=================================="
@@ -1 +1 @@
1
- {"version":3,"file":"cloudInit.js","sourceRoot":"","sources":["../../src/utils/cloudInit.ts"],"names":[],"mappings":"AAAA,MAAM,UAAU,mBAAmB,CAAC,UAAkB;IACpD,OAAO;;;;;gBAKO,UAAU;;;;;;;;;;;;;;;;;;;;;CAqBzB,CAAC;AACF,CAAC"}
1
+ {"version":3,"file":"cloudInit.js","sourceRoot":"","sources":["../../src/utils/cloudInit.ts"],"names":[],"mappings":"AAAA,MAAM,UAAU,mBAAmB,CAAC,UAAkB;IACpD,OAAO;;;;;gBAKO,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+BzB,CAAC;AACF,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quicklify",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "description": "Automate Coolify deployment on cloud providers",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",