2024-02-08 09:01:44 +00:00
---
date: "2024-02-08T13:53:17+09:00"
---
2024-02-05 17:00:06 +00:00
#self-hosted #server #tips
2024-02-05 03:26:59 +00:00
2024-02-05 03:49:01 +00:00
Giteaは最近Actionが使えるようになった。Dockerで別にランナーマシンを立ち上げる必要があるほか、GitHub Actionsと比べると、Concurrencyなどちゃんと効かなかったり色々まだ機能が足りてない所はある。
ただ、公開されてるGithubs Actionはそのままuseできるのが強い。`actions/cache@v3`の代わりに`https://github.com/actions/cache@v3`のようにURLで指定できる。よく使うアクションはgitea側にもミラーされていることもあるが、なんか放置されてるやつも多々あるので注意。
Pagesの機能がないため、別途サーバーを立ち上げてrsyncで同期するくらいしか方法がない。そこそこ設定は面倒くさいが、nginxよりさらに簡易的に動かせるgo製のWebサーバーCaddyを使ってなんとかすることにした。
2024-02-05 03:26:59 +00:00
## 下準備
鍵をssh-keygenで作っておく。( 秘密鍵をGitea側のSecretsに置くので新しく生成しないとだめ)
```sh
ssh-keygen -t ed25519
```
ファイル名は`rsync_webserver`と`rsync_webserver.pub`とかにしておく
2024-02-08 04:53:17 +00:00
2024-02-05 03:26:59 +00:00
## Caddyサーバー側の構成
2024-02-08 04:53:17 +00:00
[tomoyanonymous/Caddy\_rsync\_webserver - Caddy\_rsync\_webserver - Tomoya Matsuura Gitea ](https://git.matsuuratomoya.com/tomoyanonymous/Caddy_rsync_webserver )
2024-02-05 03:26:59 +00:00
### フォルダ構成
```sh
Dockerfile
docker-compose.yml
Caddyfile
docs/ #空フォルダ
rsync_webserver.pub #鍵をコピーしておく
```
2024-02-05 03:49:01 +00:00
rsyncでファイルを受け取る用のDockerイメージを作る
2024-02-05 03:26:59 +00:00
```Dockerfile
FROM ubuntu:latest
RUN apt-get update & & apt-get install -y openssh-server rsync
RUN mkdir /var/run/sshd
RUN sed -i 's/#\?SyslogFacility AUTH/SyslogFacility AUTH/' /etc/ssh/sshd_config
2024-02-05 09:32:18 +00:00
RUN sed -i 's/#\?LogLevel INFO/LogLevel Info/' /etc/ssh/sshd_config
2024-02-05 03:26:59 +00:00
RUN sed 's@session\s*required\s*pam_loginuid.so@session optional pam_loginuid.so@g' -i /etc/pam.d/sshd
ENV NOTVISIBLE "in users profile"
RUN echo "export VISIBLE=now" >> /etc/profile
COPY rsync_webserver.pub /root/authorized_keys
RUN mkdir ~/.ssh & & \
mv ~/authorized_keys ~/.ssh/authorized_keys & & \
chmod 0600 ~/.ssh/authorized_keys & & \
chmod 0700 ~/.ssh
EXPOSE 22
CMD ["/usr/sbin/sshd", "-D"]
```
2024-02-08 04:53:17 +00:00
パーミッションは必ず`~/.ssh/authorized_keys`が600、`~/.ssh`が700でないとssh接続できないので注意
2024-02-05 03:26:59 +00:00
2024-02-05 03:49:01 +00:00
`docker-compose.yml` でCaddyとの連携設定。共通のボリュームでhtmlを管理するが、今回はそのフォルダを`docs`という名前で作った。Caddyのイメージはそのまま使う。
2024-02-05 03:26:59 +00:00
```yml
version: '3'
services:
ssh:
build: .
volumes:
- ./docs:/var/www/html
ports:
- '25222:22'
server:
image: caddy:latest
volumes:
- ./Caddyfile:/etc/caddy/Caddyfile
- ./docs:/www/html
ports:
- "8080:80"
```
2024-02-06 02:48:31 +00:00
Caddyファイルは最小限。
2024-02-05 03:26:59 +00:00
```Caddyfile
:80 {
root * /www/html
file_server
try_files {path}.html {path}
2024-02-06 02:48:31 +00:00
handle_errors {
rewrite * /404.html
file_server
}
2024-02-05 03:26:59 +00:00
}
```
2024-02-05 03:49:01 +00:00
この辺参考。[Serving static files using Caddy](https://thedevelopercafe.com/articles/serving-static-files-using-caddy-8513e8f36e46)。Quartzでは`/記事名.html`に`example.com/記事名`でアクセスする必要があるので`try_files`の行が必要。
2024-02-05 03:26:59 +00:00
`docs` 内に適当な`index.html`を置いて`docker-compose build`、`docker-compose up -d`で立ち上げ、`DockerホストのIP:8080`で繋ぐとアクセスできる。
これをそのまま[[Cloudflare Tunnel]]で公開している。
## Gitea側の設定
Action RunnerつきでGiteaを立ち上げるところまでは省略。
ほぼこのサイトの例を借りる。[[Hugo]]じゃなく[[Quartz]]なので色々違うけど
[CI/CD pipeline for a Hugo-built static page using Gitea Actions on a selfhosted Gitea instance · Julius Röttgermann | DevOps related Blog and Tutorials ](https://julius-roettgermann.de/post/hugo-cicd/ )
リポジトリのSettings -> Actions -> Secretsに`PRIVATE_KEY`という名前で`rsync_webserver`の中身を貼り付ける。
同じくVariablesの方には以下を設定
- WEBSERVER_HOST (Caddyが立ち上がっているサーバーのIP)
- WEBSERVER_PORT ( Caddyが立ち上がっているサーバーのSSH用ポート、上の例では25222)
- WEBSERVER_USER : root( これあんまり良くないのかな)
2024-02-08 04:53:17 +00:00
で、リポジトリに`/.gitea/workflows/ci.yaml`を作る。[Gitea Actionsの`ubuntu-latest`ラベルのランナーはデフォルトでDebianベースの`node:16-bullseye`のDockerイメージのエイリアス](https://docs.gitea.com/usage/actions/act-runner#labels)で( これまじでややこしい) 、QuartzはNode18以降でないと動かない。またGoも入ってないので入れる。
2024-02-05 03:26:59 +00:00
```yml
name: Build
on:
push:
branches:
- v4
jobs:
build:
env:
RUNNER_TOOL_CACHE: /toolcache #これないとキャッシュが効かない
runs-on: ubuntu-latest
steps:
- run: git config --global core.quotepath false
- name: Install apt packages
run: apt update & & apt install -y rsync
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: https://github.com/actions/setup-node@v4
with:
node-version: 'latest'
- uses: https://github.com/actions/setup-go@v4
with:
go-version: '^1.20'
- uses: https://gitea.com/actions/go-hashfiles@v0.0.1
id: get-hash
with:
patterns: |-
** /package-lock.json
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ steps.get-hash.outputs.hash }}
restore-keys: |
${{ runner.os }}-node-
- run: npm i
- run: npx quartz build
- name: Create private key
run: |
echo "${{ secrets.PRIVATE_KEY }}" > /tmp/act_runner_key
chmod 600 /tmp/act_runner_key
- name: rsync public directory
run: |
rsync -avz --delete -e "ssh -i /tmp/act_runner_key -o StrictHostKeyChecking=no -p ${{ vars.WEBSERVER_PORT }}" ${{ gitea.workspace }}/public/* ${{ vars.WEBSERVER_USER }}@${{ vars.WEBSERVER_HOST }}:/var/www/html
```
2024-02-05 03:49:01 +00:00
できてますねえ!
2024-02-05 03:26:59 +00:00
2024-02-05 03:49:01 +00:00
![[img/gitea_action_ss.png]]
2024-02-05 03:26:59 +00:00
Branch Previewが手軽にできればいいんだけどなあ