R
Runtipi5w ago
pipio

Freshrss with runtipi

Hello. I installed FreshRSS. When I see the Google API appear an error.; WARN: Probable invalid base URL in ./data/config.php anyone know how to fix this ? How can I edit the line? I am newbie in this topics. Thanks
1 Reply
InfBoumcyCastle
i just copiloted: ( used LLM)
freshrss docker compose WARN: Probable invalid base URL in ./data/config.php
the answer seems valid: ------------------- This warning typically indicates that the base_url parameter in your config.php file is incorrect. It often happens if the URL or address of your FreshRSS instance has changed since the initial setup. Here's how you can address it: 1. Locate the config.php file: - Navigate to the directory where your FreshRSS data is stored. For example, if you're using Docker, it might be in a volume like /path/to/data/www/freshrss/data/. 2. Backup the file: - Before making any changes, create a backup of the config.php file:
cp config.php config.bak

cp config.php config.bak

3. Edit the config.php file: - Open the file in a text editor:
nano config.php

nano config.php

- Look for the base_url parameter. It might look something like this:
'base_url' => 'http://old.base.url',

'base_url' => 'http://old.base.url',

- Update it to the correct URL of your FreshRSS instance:
'base_url' => 'http://new.base.url',

'base_url' => 'http://new.base.url',

4. Restart your Docker container: - After saving the changes, restart your FreshRSS Docker container to apply the updates:
docker-compose down
docker-compose up -d

docker-compose down
docker-compose up -d

This should resolve the warning. If you continue to face issues, let me know, and we can troubleshoot further! ------------------- copilot does not know about runtipi - so some paths / restart procedures are different

Did you find this page helpful?