[PR #139] [MERGED] Use relative links instead of absolute. #796

Closed
opened 2026-02-25 20:36:44 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/benbusby/whoogle-search/pull/139
Author: @bugbounce
Created: 10/28/2020
Status: Merged
Merged: 10/29/2020
Merged by: @benbusby

Base: developHead: develop


📝 Commits (3)

  • c64432f Use relative links instead of absolte.
  • 6a68fc3 Use relative link for opensearch.xml
  • 85f6ec9 Merge branch 'develop' into develop

📊 Changes

6 files changed (+43 additions, -43 deletions)

View changed files

📝 app/filter.py (+4 -4)
📝 app/static/js/autocomplete.js (+2 -2)
📝 app/static/js/controller.js (+3 -3)
📝 app/templates/display.html (+7 -7)
📝 app/templates/header.html (+3 -3)
📝 app/templates/index.html (+24 -24)

📄 Description

This allows for hosting under a subpath. For example if you want to host
whoogle at example.com/whoogle, it should work better with a reverse proxy.

Sample nginx reverse proxy config:

server {
                server_name whoogle.example.com;
                listen 443 ssl http2;

                location /whoogle/ {
                        proxy_pass http://127.0.0.1:5000/;
                }

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/benbusby/whoogle-search/pull/139 **Author:** [@bugbounce](https://github.com/bugbounce) **Created:** 10/28/2020 **Status:** ✅ Merged **Merged:** 10/29/2020 **Merged by:** [@benbusby](https://github.com/benbusby) **Base:** `develop` ← **Head:** `develop` --- ### 📝 Commits (3) - [`c64432f`](https://github.com/benbusby/whoogle-search/commit/c64432f15907ce7d2185dbd1618164df5b5944e5) Use relative links instead of absolte. - [`6a68fc3`](https://github.com/benbusby/whoogle-search/commit/6a68fc31d3b398ef17ff081daf1182001c982a67) Use relative link for opensearch.xml - [`85f6ec9`](https://github.com/benbusby/whoogle-search/commit/85f6ec931a56dd8dfa0e675438d5b3f99fef5a5a) Merge branch 'develop' into develop ### 📊 Changes **6 files changed** (+43 additions, -43 deletions) <details> <summary>View changed files</summary> 📝 `app/filter.py` (+4 -4) 📝 `app/static/js/autocomplete.js` (+2 -2) 📝 `app/static/js/controller.js` (+3 -3) 📝 `app/templates/display.html` (+7 -7) 📝 `app/templates/header.html` (+3 -3) 📝 `app/templates/index.html` (+24 -24) </details> ### 📄 Description This allows for hosting under a subpath. For example if you want to host whoogle at example.com/whoogle, it should work better with a reverse proxy. Sample nginx reverse proxy config: ``` server { server_name whoogle.example.com; listen 443 ssl http2; location /whoogle/ { proxy_pass http://127.0.0.1:5000/; } ``` --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-25 20:36:44 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/whoogle-search#796
No description provided.