-
-
Notifications
You must be signed in to change notification settings - Fork 494
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
部署 TTRSS 时提示 Please set SELF_URL_PATH to the correct value for your server #19
Comments
所以你是需要 ip 直接访问? 地址 http://ip:181/ 错误界面提示什么地址,就放什么地址。 |
我刚刚试了一下还是不行。依旧提示我要输入地址。 |
对不起,issue 开的太匆忙,没有注意到。 OS 信息:
安装方式:
Postgres 版本:
错误提示:
配置文件
|
我试了一下直接用 docker run 运行,结果也是一样。 |
刚跑的,没有任何问题: version: "3"
services:
database.postgres:
image: sameersbn/postgresql:latest
container_name: postgres
environment:
- PG_PASSWORD=ttrss # please change the password
- DB_EXTENSION=pg_trgm
restart: always
service.rss:
image: wangqiru/ttrss:latest
container_name: ttrss
ports:
- 181:80
environment:
- SELF_URL_PATH=http://localhost:181/ # please change to your own domain
- DB_HOST=database.postgres
- DB_PORT=5432
- DB_NAME=ttrss
- DB_USER=postgres
- DB_PASS=ttrss # please change the password
stdin_open: true
tty: true
restart: always
command: sh -c 'sh /wait-for database.postgres:5432 -- php /configure-db.php && exec s6-svscan /etc/s6/' |
可能是 postgres 配置有问题?我现在没用 docker 直接搭好了。 |
|
明白了,谢谢。 |
同遇见这个问题,添加 |
这个问题一般都是 nginx 配置 https 有点问题导致的。最简单的解决办法是把 nginx.conf 里 |
论好好阅读文档的重要性。 |
我也出现此问题。新系统,按步骤来,没装nginx。 |
必须怒答一波,看到红色的SELF_URL_PATH 错误没有了,出现白色tiny tiny RSS登录界面好开心。大部分人看到这种解决办法就很懵逼,“添加define('_SKIP_SELF_URL_PATH_CHECKS', true)到 config.php中”,config.php到底在哪啊,如何添加啊,真是哭。好吧,其实不用添加就可以解决,首先我是采用docker-compose装的tiny tiny RSS,对小白来说真的超级省事友好,像我这种真正的小白,弄这个也不得不看个5分钟docker快速入门来糊弄一下,不然连docker-compose都搞不定。如果你装好了docker-compose里的4种自带软件: |
Happy RSSing! |
docker-compose 摘录如下
我把SELF_URL_PATH改成
http://ip/
也无法启动。这是为什么?
The text was updated successfully, but these errors were encountered: