We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When running hugo server with the following config snippet:
hugo server
baseurl = "http://10.1.2.3:1313/"
Hugo ignores the baseurl in the config:
baseurl
$ hugo server --bind 10.1.2.3 ... Web Server is available at http://localhost:1313/ (bind address 10.1.2.3)
Hugo should instead run as:
$ hugo server --bind 10.1.2.3 ... Web Server is available at http://10.1.2.3:1313/ (bind address 10.1.2.3)
This manifests itself in the generation of .Permalink values for nodes and pages.
.Permalink
The text was updated successfully, but these errors were encountered:
commands: Get BaseURL from viper in server mode
f4b2809
Fixes gohugoio#1821
a89b2f4
cd42a64
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Sorry, something went wrong.
moorereason
Successfully merging a pull request may close this issue.
When running
hugo server
with the following config snippet:Hugo ignores the
baseurl
in the config:Hugo should instead run as:
This manifests itself in the generation of
.Permalink
values for nodes and pages.The text was updated successfully, but these errors were encountered: