/Moonglade

The .NET blog system of https://edi.wang, runs on Microsoft Azure

Primary LanguageC#GNU General Public License v3.0GPL-3.0

Moonglade Blog

Docker Linux x64 Man hours

A personal blog system that optimized for Microsoft Azure. Designed for developers, enabling most common blogging features including posts, comments, categories, archive, tags and pages.

📦 Deployment

  • Ue stable code from Release branch rather than master branch.

  • HTTPS is required, and it is recommended to enable HTTP/2 support on your web server.

Full Deploy on Azure

This is the way https://edi.wang is deployed, by taking advantage of as many Azure services as possible, the blog can run very fast and secure.

There is no automated script to deploy it, you need to manually create all the resources.

image

Quick Deploy on Azure (App Service on Linux)

Use automated deployment script to get your Moonglade up and running in 10 minutes with minimal Azure components, follow instructions here

Quick Deploy with Docker-Compose

Simply go the the root folder of this repo and run:

docker-compose build
docker-compose up

That's it! Now open: Browser: http://localhost:8080

🐵 Development

Tools Alternative
Visual Studio 2022 Visual Studio Code with .NET 8.0 SDK
SQL Server 2022 SQL Server LocalDB, PostgreSQL or MySQL

Setup Database

You can choose from SQL Server, PostgreSQL or MySQL. Update your database connection string in appsettings.json, ConnectionStrings section.

Database DatabaseType MoongladeDatabase Example
Microsoft SQL Server SqlServer Server=(localdb)\\MSSQLLocalDB;Database=moonglade;Trusted_Connection=True;
MySQL MySql Server=localhost;Port=3306;Database=moonglade;Uid=root;Pwd=***;
PostgreSQL PostgreSql User ID=***;Password=***;Host=localhost;Port=5432;Database=moonglade;Pooling=true;

Build Source

Build and run ./src/Moonglade.sln

  • Admin: https://localhost:1055/admin
  • Default username: admin
  • Default password: admin123

⚙ Configuration

This section discuss environment settings in appsettings.json. For blog settings, please use "/admin/settings" UI.

Authentication

You can choose one authentication provider from below.

Microsoft Entra ID

See Wiki document

Local Account

Set Authentication:Provider to "Local". You can manage accounts in /admin/settings/account

Image Storage

ImageStorage controls how blog post images are stored.

Azure Blob Storage (Preferred)

You need to create an Azure Blob Storage with container level permission.

{
  "Provider": "azurestorage"
  "AzureStorageSettings": {
    "ConnectionString": "YOUR CONNECTION STRING",
    "ContainerName": "YOUR CONTAINER NAME"
  }
}

When configured the image storage to use Azure Blob, you can take advantage of CDN for your image resources. Just enable CDN in admin settings, the blog will get images from CDN.

Minio Blob Storage

You need to hava an Minio Server.

"Provider": "miniostorage"
"MinioStorageSettings": {
  "EndPoint": "Minio Server Endpoint(eg:localhost:9600)",
  "AccessKey": "Your Access Key",
  "SecretKey": "Your Secret Key",
  "BucketName": "Your BucketName",
  "WithSSL": false
}

File System (Not Recommended)

You can also choose File System for image storage if you don't have a cloud option.

{
  "Provider": "filesystem",
  "FileSystemPath": "C:\\UploadedImages"
}

Comment Moderator

See https://github.com/EdiWang/Moonglade.ContentSecurity

Email Notification

If you need email notification for new comments, new replies and pingbacks, you have to setup the Moonglade.Email Azure Function first, and then enable notification in admin portal.

Others

🎉 Blog Protocols or Standards

Name Feature Status
RSS Subscription Supported
Atom Subscription Supported
OPML Subscription Supported
Open Search Search Supported
Pingback Social Supported
Reader View Reader mode Supported
FOAF Social Supported
RSD Service Discovery Supported
MetaWeblog Blogging Basic Support
Dublin Core Metadata SEO Basic Support
BlogML Blogging Not planned
APML Social Not planned
Trackback Social Not planned

免责申明

对于**用户,我们有一份特定的免责申明。请确保你已经阅读并理解其内容: