mirror of
https://github.com/agrinman/tunnelto.git
synced 2026-04-26 01:06:01 +03:00
[GH-ISSUE #56] host option is not working #47
Labels
No labels
Need more info
bug
duplicate
enhancement
good first issue
good first issue
help wanted
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/tunnelto#47
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @mihaichitic on GitHub (Nov 4, 2021).
Original GitHub issue: https://github.com/agrinman/tunnelto/issues/56
I create tunnel with:
tunnelto --subdomain test --port 443 --scheme https --host local.domain.com --dashboard-port 9443 -vI have local.domain.com added in /etc/hosts to point to 127.0.0.1.
On local I have my app and when I check the HTTP_HOST header is "test.tunneto.dev" and not "local.domain.com".
If I test with:
curl -H "Host:local.domain.com" https://local.domain.comI see in my app HTTP_HOST=local.domain.com as expected.
Did I miss something, or it's really a bug?