miniblog.iaspnetcore.com
A full-featured yet simple blog engine built on ASP.NET Core 8.x. bootstrap 5.x + json data + .net 8.x.
I have a vps on vultr.com running Ubuntu, and installed ASP.NET Core 8.x many months ago.
Browser Cloudflare Origin Server http://localhost:7600 full mode
20221126
local disk; f:\developer_mini_core_json
github:https://github.com/iaspnetcore/MiniBlog.Core.git
domain:miniblog.iaspnetcore.com on vultr
\src\Miniblog.Core\wwwroot\Posts\files \src\Miniblog.Core\wwwroot\Posts
CRUD Operation With JSON File Data In C#
Create a ViewComponents https://docs.microsoft.com/en-us/aspnet/core/mvc/views/view-components?view=aspnetcore-6.0
Theme templates come from:https://getbootstrap.com/docs/5.1/examples/blog/#
Live demo: https://miniblog.iaspnetcore.com/
Username: demo
Password: demo
1.buy domain
2.buy server
3.A to server
4.install nginx
5.config nginx for your domain
6.install Let’s Encrypt client certbot
7.downloaded SSL certificates for your domain
8.run local web server
没有账号的点我注册Vultr账号(注册就送20美元哦)https://www.vultr.com/?ref=7035322-3B
Vultr注册购买图文教程 Click here.
-
How to Deploy a New Instance on Vultr Step by Step (https://www.iaspnetcore.com/blogpost-6199ff495b26cb0202ad6ce8-how-to-deploy-a-new-instance-on-vultr-step-by-step)
-
How To Install and uninstall reinstall Nginx on Ubuntu 18.04(aliyun)(https://www.iaspnetcore.com/blogpost-5d9865cc72c1772b244afe0f-how-to-install-and-uninstall-reinstall-nginx-on-ubuntu-1804aliyun)
-
How to Install and uninstall reinstall upgrade .NET 6.x on Ubuntu 18.04*64 step by step https://www.iaspnetcore.com/blogpost-618a75d3635c733c81dc77c3-how-to-install-net-6x-on-ubuntu-180464-step-by-step
-
How to Deploying Real World ASP.NET Core 6.x on Ubuntu 18.04 step by step(vultr) https://www.iaspnetcore.com/blogpost-5f8791eb6cd85f05bcad2df1-how-to-deploying-real-world-aspnet-core-6x-on-ubuntu-1804-step-by-step
-
Follows best practices for web applications
- Log in to your domain registrar
- www.namesilo.com -Buy a domain from www.namesilo.com
- Update your nameservers - change your default Nameservers to Cloudflare Nameservers
- Change Name Servers dns to cf - Find the list of nameservers at your registrar. Add both of your assigned Cloudflare nameservers, remove any other nameservers, and save your changes.Change Name Servers dns to cf
- buy server from vultr.com
- W3C standards compliant
- cloudflare login
- cloudflare login - register with Cloudflare Register.
- Add Site
- Add Site - Add your Site to cloudflare
- Create DNS records
- Create DNS records - For A, AAAA records, decide whether hostname traffic is proxied through Cloudflare.
- SSL/TLS encryption mode is Full, Encrypts traffic between the browser and Cloudflare,Cloudflare and Origin Server
- SSL/TLS encryption mode is Full - Full Encrypts end-to-end, using a self signed certificate on the server
- Install and uninstall reinstall Nginx on Ubuntu 18.04
- Let's Encrypt
- Security HTTP headers set
- Uses the Azure Image Optimizer for superb image compression
- Uses a CDN Tag Helper to make it easy to serve the images from any CDN.
On the command line
cd /
cd /var/www/iaspnetcore/developer_mini_core_json_miniblogiaspnetcorecom/developer_mini_core_json/src/Miniblog.Core
dotnet run --urls http://0.0.0.0:6002
dotnet run --urls http://localhost:6002
output
info: Microsoft.Hosting.Lifetime[14]
Now listening on: http://localhost:6002
dbug: Microsoft.AspNetCore.Hosting.Diagnostics[13]
Loaded hosting startup assembly Miniblog.Core
info: Microsoft.Hosting.Lifetime[0]
Application started. Press Ctrl+C to shut down.
info: Microsoft.Hosting.Lifetime[0]
Hosting environment: Development
info: Microsoft.Hosting.Lifetime[0]
miniblog.iaspnetcore.com服务器配置
1.miniblog.iaspnetcore.com
命令行启动
Debug
sudo systemctl stop kestrel-miniblogiaspnetcorecom.service
cd /
cd /var/www/iaspnetcore/developer_mini_core_json_miniblogiaspnetcorecom/developer_mini_core_json/src/Miniblog.Core
dotnet run --urls http://0.0.0.0:6002
dotnet run --urls http://localhost:6002
Release
sudo systemctl stop kestrel-miniblogiaspnetcorecom.service
cd /var/www/iaspnetcore/developer_mini_core_json_miniblogiaspnetcorecom/developer_mini_core_json/src/Miniblog.Core
dotnet publish -c release
Output
Miniblog.Core -> /var/www/iaspnetcore/developer_mini_core_json_miniblogiaspnetcorecom/developer_mini_core_json/src/Miniblog.Core/bin/Release/net8.0/Miniblog.Core.dll Adding WebOptimizer cache files to publish output Miniblog.Core -> /var/www/iaspnetcore/developer_mini_core_json_miniblogiaspnetcorecom/developer_mini_core_json/src/Miniblog.Core/bin/Release/net8.0/publish/
cd /var/www/iaspnetcore/developer_mini_core_json_miniblogiaspnetcorecom/developer_mini_core_json/src/Miniblog.Core/bin/Release/net8.0/publish/
dotnet Miniblog.Core.dll --urls http://127.0.0.1:6002
2.服务配置
sudo vi /etc/systemd/system/kestrel-miniblogiaspnetcorecom.service
path:/etc/systemd/system/kestrel-miniblogiaspnetcorecom.service
kestrel-miniblogiaspnetcorecom.service
[Unit]
Description=miniblog.iaspnetcore.com App running on Ubuntu
[Service]
WorkingDirectory=/var/www/MiniBlog.Core/src/Miniblog.Core/bin/Release/net8.0/publish
ExecStart=/usr/bin/dotnet /var/www/MiniBlog.Core/src/Miniblog.Core/bin/Release/net8.0/publish/Miniblog.Core.dll --urls http://localhost:6002
Restart=always
# Restart service after 10 seconds if the dotnet service crashes:
RestartSec=10
KillSignal=SIGINT
SyslogIdentifier=miniblog.iaspnetcore.com
User=www-data
Environment=ASPNETCORE_ENVIRONMENT=Production
Environment=DOTNET_PRINT_TELEMETRY_MESSAGE=false
[Install]
WantedBy=multi-user.target
3.Install first kestrel-miniblogiaspnetcorecom.service
sudo systemctl daemon-reload
sudo systemctl enable kestrel-miniblogiaspnetcorecom.service
sudo systemctl start kestrel-miniblogiaspnetcorecom.service
sudo systemctl status kestrel-miniblogiaspnetcorecom.service
sudo systemctl restart kestrel-miniblogiaspnetcorecom.service
sudo systemctl stop kestrel-miniblogiaspnetcorecom.service
sudo systemctl status kestrel-miniblogiaspnetcorecom.service
sudo journalctl -fu kestrel-miniblogiaspnetcorecom.service
sudo systemctl restart kestrel-miniblogiaspnetcorecom.service
4.批处理
cp -r /var/www/MiniBlog.Core/src/Miniblog.Core/bin/Release/net8.0/publish/wwwroot/uploadimages /var/www/MiniBlog.Core/src/Miniblog.Core/src/wwwroot/uploadimages
sudo systemctl stop kestrel-miniblogiaspnetcorecom.service
cd /
cd /var/www/MiniBlog.Core/src/Miniblog.Core
dotnet publish -c release
sudo systemctl daemon-reload
sudo systemctl restart kestrel-miniblogiaspnetcorecom.service
chmod 777 /var/artifacts
chmode 777 /var/www/MiniBlog.Core/src/Miniblog.Core/bin/Release/net8.0/publish/wwwroot/Posts