Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tmp: reword this later. details on how this was tested below #49

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

peterldowns
Copy link
Owner

Fixes #48

  • Rewrite the PR
  • Follow up on the issue itself
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'

```
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'
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Doesn't work with the vite dev server
1 participant