Skip to content

Commit 913f96e

Browse files
ericmigiclaude
andcommitted
Fix canonical URLs to use correct domain developer.repebble.com
Updated all site URLs from developer.rebble.io (typo) to the correct developer.repebble.com domain. This fixes Google Search Console errors where canonical tags were pointing to the wrong domain, causing pages to be treated as duplicates and not indexed properly. Changes: - Update Dockerfile environment variables for URL and HTTPS_URL - Update _config.yml site URLs - Update Disqus comment URLs in blog and guide layouts 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent fa8df15 commit 913f96e

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ COPY . .
1616

1717
ENV LANG=C.UTF-8
1818
ENV LC_ALL=C.UTF-8
19-
ENV URL=http://developer.rebble.io
20-
ENV HTTPS_URL=https://developer.rebble.io
19+
ENV URL=https://developer.repebble.com
20+
ENV HTTPS_URL=https://developer.repebble.com
2121
ENV EXTERNAL_SERVER=https://example.com
2222
ENV SKIP_DOCS=true
2323
ENV JEKYLL_ENV=production

_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
url: https://developer.rebble.io
16-
https_url: https://developer.rebble.io
15+
url: https://developer.repebble.com
16+
https_url: https://developer.repebble.com
1717
baseurl:
1818
asset_path: /assets
1919
external_server: https://developer-api.getpebble.com

source/_layouts/blog/post.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ <h1 class="pagetitle">{{ page.title }}</h1>
2525
{{ content }}
2626
<hr>
2727
<a id="comments" class="anchor"></a>
28-
<div id="disqus_thread" aria-live="polite" data-post-url="https://developer.getpebble.com{{ page.url }}">
28+
<div id="disqus_thread" aria-live="polite" data-post-url="https://developer.repebble.com{{ page.url }}">
2929
You need JavaScript enabled to read and post comments.
3030
</div>
3131
</div>

source/_layouts/guides/default.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ <h1 class="pagetitle">{{ page.title }}</h1>
6060
</div>
6161
{% unless page.hide_comments %}
6262
<a id="comments" class="anchor"></a>
63-
<div id="disqus_thread" aria-live="polite" data-post-url="https://developer.getpebble.com{{ page.url }}">
63+
<div id="disqus_thread" aria-live="polite" data-post-url="https://developer.repebble.com{{ page.url }}">
6464
You need JavaScript enabled to read and post comments.
6565
</div>
6666
{% endunless %}

source/_layouts/guides/wide.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ <h1 class="pagetitle">{{ page.title }}</h1>
5656
<div>{{ content }}</div>
5757
{% unless page.hide_comments %}
5858
<a id="comments" class="anchor"></a>
59-
<div id="disqus_thread" aria-live="polite" data-post-url="https://developer.getpebble.com{{ page.url }}">
59+
<div id="disqus_thread" aria-live="polite" data-post-url="https://developer.repebble.com{{ page.url }}">
6060
You need JavaScript enabled to read and post comments.
6161
</div>
6262
{% endunless %}

0 commit comments

Comments
 (0)