163 lines
5.0 KiB
Markdown
163 lines
5.0 KiB
Markdown
|
#self-hosted #server
|
|||
|
|
|||
|
|
|||
|
[Serving static files using Caddy](https://thedevelopercafe.com/articles/serving-static-files-using-caddy-8513e8f36e46)
|
|||
|
|
|||
|
## 下準備
|
|||
|
|
|||
|
鍵をssh-keygenで作っておく。(秘密鍵をGitea側のSecretsに置くので新しく生成しないとだめ)
|
|||
|
|
|||
|
```sh
|
|||
|
ssh-keygen -t ed25519
|
|||
|
```
|
|||
|
|
|||
|
ファイル名は`rsync_webserver`と`rsync_webserver.pub`とかにしておく
|
|||
|
|
|||
|
[tomoyanonymous/Caddy\_rsync\_webserver - Caddy\_rsync\_webserver - Tomoya Matsuura Gitea](https://git.matsuuratomoya.com/tomoyanonymous/Caddy_rsync_webserver)
|
|||
|
|
|||
|
## Caddyサーバー側の構成
|
|||
|
|
|||
|
Caddyのイメージはそのまま使う
|
|||
|
|
|||
|
### フォルダ構成
|
|||
|
```sh
|
|||
|
Dockerfile
|
|||
|
docker-compose.yml
|
|||
|
Caddyfile
|
|||
|
docs/ #空フォルダ
|
|||
|
rsync_webserver.pub #鍵をコピーしておく
|
|||
|
```
|
|||
|
|
|||
|
+もう一つrsyncでファイルを受け取る用のDockerイメージを作る
|
|||
|
|
|||
|
```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
|
|||
|
RUN sed -i 's/#\?LogLevel INFO/LogLevel DEBUG/' /etc/ssh/sshd_config
|
|||
|
|
|||
|
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"]
|
|||
|
```
|
|||
|
|
|||
|
`~/.ssh/authorized_keys`と`~/.ssh`のパーミッションを間違えるとssh接続できないので注意
|
|||
|
|
|||
|
`docker-compose.yml`でCaddyとの連携設定。共通のボリュームでhtmlを管理するが、今回はそのフォルダを`docs`という名前で作った
|
|||
|
|
|||
|
```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"
|
|||
|
```
|
|||
|
|
|||
|
Caddyファイルは最小限。404の設定とかしてない。quartzでは`/記事名.html`に`example.com/記事名`でアクセスする必要があるので`try_files`の行が必要。
|
|||
|
|
|||
|
```Caddyfile
|
|||
|
:80 {
|
|||
|
root * /www/html
|
|||
|
file_server
|
|||
|
try_files {path}.html {path}
|
|||
|
}
|
|||
|
```
|
|||
|
|
|||
|
`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(これあんまり良くないのかな)
|
|||
|
|
|||
|
で、リポジトリに`/.gitea/workflows/ci.yaml`を作る。
|
|||
|
|
|||
|
```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
|
|||
|
```
|
|||
|
|
|||
|
|
|||
|
|
|||
|
Branch Previewが手軽にできればいいんだけどなあ
|