- Get Standard ISO from https://alpinelinux.org/downloads/
- Boot the ISO and log in as root (no password required).
- Run
setup-alpineand install using defaults. For partition layout usesysorlvmsys.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| use Swoole\Http\Request; | |
| use Swoole\Http\Response; | |
| use Swoole\Http\Server; | |
| $user = 'World'; | |
| $server = new Server("0.0.0.0", 8003); |