Update.
This commit is contained in:
parent
d350ab6807
commit
f6503035f6
36
README.md
36
README.md
@ -1,6 +1,19 @@
|
|||||||
# MyWebdav
|
# MyWebdav - Self-Hosted Cloud Storage Solution
|
||||||
|
|
||||||
MyWebdav is a self-hosted cloud storage web application designed for secure, scalable file management and sharing. Built with modern web technologies, it provides a comprehensive solution for individuals and organizations seeking full control over their data storage.
|
MyWebdav is a powerful, open-source self-hosted cloud storage web application designed for secure, scalable file management and sharing. Built with modern web technologies, it provides a comprehensive solution for individuals and organizations seeking full control over their data storage, privacy, and collaboration.
|
||||||
|
|
||||||
|
**Keywords:** self-hosted cloud storage, open-source file sharing, WebDAV server, SFTP support, secure file sync, private cloud, data privacy, file collaboration, encrypted storage, Nextcloud alternative, ownCloud alternative
|
||||||
|
|
||||||
|
## Why Choose MyWebdav?
|
||||||
|
|
||||||
|
MyWebdav stands out as a premier self-hosted cloud storage solution, offering unparalleled control over your data while maintaining enterprise-grade security and collaboration features. Unlike commercial cloud services like Dropbox, Google Drive, or OneDrive, MyWebdav ensures your files remain on your own infrastructure, protecting your privacy and eliminating vendor lock-in.
|
||||||
|
|
||||||
|
### Key Benefits:
|
||||||
|
- **Complete Data Ownership**: Host your files on your own servers or VPS
|
||||||
|
- **Enhanced Privacy**: No third-party access to your sensitive data
|
||||||
|
- **Cost-Effective**: Free and open-source, with optional paid features
|
||||||
|
- **Flexible Deployment**: Docker, manual installation, or cloud hosting options
|
||||||
|
- **GDPR Compliant**: Full control over data processing and storage locations
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
@ -41,6 +54,25 @@ MyWebdav is a self-hosted cloud storage web application designed for secure, sca
|
|||||||
- **Admin Console**: Centralized user management and system monitoring
|
- **Admin Console**: Centralized user management and system monitoring
|
||||||
- **API Access**: RESTful API for third-party integrations
|
- **API Access**: RESTful API for third-party integrations
|
||||||
|
|
||||||
|
## Pricing and Costs
|
||||||
|
|
||||||
|
MyWebdav is free and open-source software. Hosting costs depend on your deployment method:
|
||||||
|
|
||||||
|
### Self-Hosting Costs
|
||||||
|
- **VPS Hosting**: $5-20/month (depending on storage needs)
|
||||||
|
- **Free Tier**: 15GB storage + 15GB bandwidth included
|
||||||
|
- **Pay-as-you-go**: $0.0045/GB storage/month + $0.009/GB egress bandwidth
|
||||||
|
- **No Subscription Fees**: Unlike Dropbox ($10+/month) or Google Drive ($2-30/month)
|
||||||
|
|
||||||
|
### Commercial Alternatives Comparison
|
||||||
|
| Service | Monthly Cost | Storage Limit | Self-Hosted |
|
||||||
|
|---------|-------------|---------------|-------------|
|
||||||
|
| MyWebdav | $0-50+ | Unlimited | Yes |
|
||||||
|
| Dropbox | $10-20 | 2TB-5TB | No |
|
||||||
|
| Google Drive | $2-30 | 100GB-5TB | No |
|
||||||
|
| OneDrive | $2-10 | 100GB-1TB | No |
|
||||||
|
| Nextcloud | $0-50+ | Unlimited | Yes |
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
### Prerequisites
|
### Prerequisites
|
||||||
|
|||||||
@ -3,7 +3,50 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>MyWebdav Cloud Storage</title>
|
<title>MyWebdav - Self-Hosted Cloud Storage Solution</title>
|
||||||
|
<meta name="description" content="MyWebdav is a powerful open-source self-hosted cloud storage application for secure file management, sharing, and collaboration. Control your data with WebDAV, SFTP, and encrypted storage.">
|
||||||
|
<meta name="keywords" content="self-hosted cloud storage, open-source file sharing, WebDAV server, SFTP support, secure file sync, private cloud, data privacy, file collaboration, encrypted storage, Nextcloud alternative, ownCloud alternative">
|
||||||
|
<meta name="author" content="MyWebdav Team">
|
||||||
|
<meta name="robots" content="index, follow">
|
||||||
|
<meta property="og:title" content="MyWebdav - Self-Hosted Cloud Storage Solution">
|
||||||
|
<meta property="og:description" content="Secure, scalable self-hosted cloud storage with WebDAV, SFTP, and enterprise features. Take control of your data privacy.">
|
||||||
|
<meta property="og:type" content="website">
|
||||||
|
<meta property="og:url" content="https://your-domain.com">
|
||||||
|
<meta property="og:image" content="/static/icons/icon-192x192.png">
|
||||||
|
<meta name="twitter:card" content="summary_large_image">
|
||||||
|
<meta name="twitter:title" content="MyWebdav - Self-Hosted Cloud Storage">
|
||||||
|
<meta name="twitter:description" content="Open-source cloud storage for complete data control and privacy.">
|
||||||
|
<meta name="twitter:image" content="/static/icons/icon-192x192.png">
|
||||||
|
<link rel="canonical" href="https://your-domain.com">
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "SoftwareApplication",
|
||||||
|
"name": "MyWebdav",
|
||||||
|
"description": "Self-hosted cloud storage web application for secure file management and sharing",
|
||||||
|
"url": "https://your-domain.com",
|
||||||
|
"applicationCategory": "CloudStorage",
|
||||||
|
"operatingSystem": "Linux, Windows, macOS",
|
||||||
|
"offers": {
|
||||||
|
"@type": "Offer",
|
||||||
|
"price": "0",
|
||||||
|
"priceCurrency": "USD"
|
||||||
|
},
|
||||||
|
"author": {
|
||||||
|
"@type": "Organization",
|
||||||
|
"name": "MyWebdav Team"
|
||||||
|
},
|
||||||
|
"featureList": [
|
||||||
|
"File Management",
|
||||||
|
"WebDAV Protocol",
|
||||||
|
"SFTP Support",
|
||||||
|
"Secure Sharing",
|
||||||
|
"User Authentication",
|
||||||
|
"Photo Gallery",
|
||||||
|
"Real-time Activity Feed"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
</script>
|
||||||
<link rel="stylesheet" href="/static/css/style.css">
|
<link rel="stylesheet" href="/static/css/style.css">
|
||||||
<link rel="stylesheet" href="/static/css/billing.css">
|
<link rel="stylesheet" href="/static/css/billing.css">
|
||||||
<link rel="stylesheet" href="/static/lib/codemirror/codemirror.min.css">
|
<link rel="stylesheet" href="/static/lib/codemirror/codemirror.min.css">
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user