Skip to content

Commit

Permalink
Fix image URLs and update video paths in articles
Browse files Browse the repository at this point in the history
  • Loading branch information
mobeicanyue committed Apr 30, 2024
1 parent b42e6a7 commit ae10b06
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ external_link:
filename_case: 0
render_drafts: true

# post_asset_folder: true
# 可以使用正常的 markdown 语法引用图片而不再使用 hexo 的 {% asset_path slug %} 语法
post_asset_folder: true
marked:
prependRoot: true
postAsset: true
Expand Down
5 changes: 3 additions & 2 deletions source/_posts/Deploy-a-springboot-project-to-server.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,10 +173,11 @@ Springboot 打包好后可以通过 `java -jar xxx.jar` 命令启动项目。但

输入以下命令启动项目:
```bash
nohup java -jar xxx.jar
nohup java -jar xxx.jar >> nohup.out 2>&1 &
```

`nohup` 命令可以让程序在后台运行,不会因为终端关闭而停止。我们还可以通过查看 `nohup.out` 文件来查看程序的输出。
- `nohup` 命令可以让程序在后台运行,不占用当前终端,不会因为终端关闭而停止。
- `>> nohup.out 2>&1` 将输出重定向到 `nohup.out` 文件中,这样我们可以查看项目的输出日志。

## 6. 反向代理与 SSL 证书申请

Expand Down
7 changes: 4 additions & 3 deletions source/_posts/Recording-the-Good-Life-1.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ date: 2024-04-02 19:01:33

也许,远在四年前高考结束时的我,可能也有类似的感悟和微妙的心绪,对当时的我来说,高中的一切都还是那么熟悉,没有来得及好好感悟和说再见就已然结束了。

![考完试的天空](https://pic4.zhimg.com/80/post_asset_folder: truev2-29b4762ef455ea245348ec968bbcea87_1440w.webp)
![考完试的天空](https://pic4.zhimg.com/80/v2-29b4762ef455ea245348ec968bbcea87_1440w.webp)

![隆江猪脚饭](https://pic3.zhimg.com/80/v2-aa1df539f7ad5ee595428d1678176e2a_1440w.webp)

Expand All @@ -40,8 +40,9 @@ date: 2024-04-02 19:01:33

下面是我拍摄的一段飞机云中穿行的视频,感觉略有意境。

<video width="100%" height="100%" src="output.webm" controls></video>
<video width="100%" height="100%" src="output2.webm" controls></video>
<video width="100%" height="100%" src="/videos/output.webm" controls></video>

<video width="100%" height="100%" src="/videos/output2.webm" controls></video>

---

Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit ae10b06

Please sign in to comment.