-
Notifications
You must be signed in to change notification settings - Fork 0
chore: promote stage -> master (docs SEO fixes) #30
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
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
8524154
ci: x4 runner (not x8) + bump actions to latest Node-24 versions (rem…
evereq 5b8e5de
ci: x4 runner (not x8) + bump actions to latest Node-24 versions (rem…
evereq 97a6b1a
ci: x4 runner (not x8) + bump actions to latest Node-24 versions (rem…
evereq 0b5bfa1
ci: x4 runner (not x8) + bump actions to latest Node-24 versions (rem…
evereq 4994905
ci: run CodeQL on self-hosted ARC runner (RUNNER_LINUX_X64_4)
evereq 869b0ab
Merge pull request #25 from ever-co/ci/runners-selfhosted
evereq 8be9fa8
ci: run CodeQL on self-hosted ARC runner (RUNNER_LINUX_X64_4)
evereq ae87e4e
Merge pull request #26 from ever-co/ci/runners-selfhosted
evereq 750c7d2
fix(seo): stop advertising unbuilt locales; keep redirects on https
evereq 11d7919
fix(seo): stop advertising unbuilt locales; keep redirects on https
evereq fcd6587
fix(seo): stop advertising unbuilt locales; keep redirects on https
evereq 6cd44bb
Merge pull request #28 from ever-co/fix/seo-docs-locales-and-redirect
evereq 7ab7996
Merge pull request #29 from ever-co/develop
evereq File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| # Static server for the built Docusaurus site. | ||
| # | ||
| # This is the stock nginx:alpine default.conf plus one line: absolute_redirect off. | ||
| # | ||
| # nginx defaults to absolute_redirect on, so when it issues the trailing-slash redirect for a | ||
| # directory it rebuilds a full URL from the Host header and its own listen port. It has no idea TLS | ||
| # was terminated upstream by Cloudflare, so it answers with http://. That turned every directory URL | ||
| # on docs.ever.co into a three-hop chain with a protocol downgrade in the middle: | ||
| # | ||
| # https://docs.ever.co/help -> 301 http://docs.ever.co/help/ (nginx, downgraded) | ||
| # http://docs.ever.co/help/ -> 301 https://docs.ever.co/help/ (Cloudflare, back up) | ||
| # | ||
| # Search engines treat redirect chains as a ranking negative and the http hop is a real downgrade. | ||
| # With absolute_redirect off nginx emits a relative `Location: /help/`, and the client keeps | ||
| # whatever scheme it arrived on -- one hop, no downgrade, no dependence on knowing the public scheme. | ||
| server { | ||
| listen 80; | ||
| server_name localhost; | ||
|
|
||
| absolute_redirect off; | ||
|
|
||
| location / { | ||
| root /usr/share/nginx/html; | ||
| index index.html index.htm; | ||
| } | ||
|
|
||
| error_page 500 502 503 504 /50x.html; | ||
| location = /50x.html { | ||
| root /usr/share/nginx/html; | ||
| } | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This pasted Yarn message is not prefixed with
//, so TypeScript and Docusaurus parse it as configuration syntax rather than a comment. Bothyarn typecheckandNODE_ENV=production yarn build --locale enfail while loading this file, preventing the English documentation site from being built. Remove or comment out the pasted output; the adjacent re-enablement note should also restore the omitted locale build flag.Artifacts
TypeScript check failing on the locale configuration
Production Docusaurus locale build failing while loading the configuration