Commit 0b3e4fa
committed
tmp: reword this later. details on how this was tested below
```
python3 -m http.server 8080 --bind 127.0.0.1
python3 -m http.server 8080 --bind localhost
python3 -m http.server 8080 --bind ::1
python3 -m http.server 8080 --bind ::1
```
and check
```
lsof -Pn | grep -E ':8080'
localias add frontend.local 8080
localias add frontend.testing 8080
```
```
curl 'http://[::]:8080/'
curl 'http://[::1]:8080/'
curl 'http://127.0.0.1:8080/'
curl 'http://localhost:8080/'
curl 'https://frontend.local'
curl 'https://frontend.testing'
```1 parent d73df9b commit 0b3e4fa
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
213 | 213 | | |
214 | 214 | | |
215 | 215 | | |
216 | | - | |
| 216 | + | |
217 | 217 | | |
218 | 218 | | |
219 | 219 | | |
| |||
0 commit comments