commit(auto)

This commit is contained in:
Kaz Saita(WSL2) 2024-02-05 21:00:07 +09:00
parent 7d0052033a
commit 1fd3be3409

View file

@ -126,12 +126,33 @@ $ sudo toucn /etc/caddy/Caddyfile
Caddyfileを編集
```
localhost, 127.0.0.1 saipi4(みなさんのホスト名に変えてください) {
localhost, 127.0.0.1 192.168.1.100(自分で決めたIPアドレス) saipi4.local(自分で決めたhostname) {
root * /var/www
file_server
}
```
/var/wwwにindex.htmlを作成
```
<!doctype html>
<html>
<head>
<title>This is the title of the webpage!</title>
</head>
<body>
<p>All your base are belong to us.</p>
</body>
</html>
```
caddyを起動
```
caddy run --config /etc/caddy/Caddyfile
```
色々怒られるかもだけど、とりあえずネットワーク内から接続できる。
![[Pasted image 20240205205804.png]]
## cf.
- [GitHub - caddyserver/caddy: Fast and extensible multi-platform HTTP/1-2-3 web server with automatic HTTPS](https://github.com/caddyserver/caddy?tab=readme-ov-file#build-from-source)