RSS-Bridge / rss-bridge

The RSS feed for websites missing it
https://rss-bridge.org/bridge01/
The Unlicense
7.36k stars 1.04k forks source link

Requested username can't be found. Timeout. #16

Closed HLFH closed 11 years ago

HLFH commented 11 years ago

Salut,

Après génération du flux ATOM du compte Twitter MailpileTeam, au bout de 2/3 secondes, si je reloade le flux, je reçois une page blanche avec le message suivant :

Requested username can't be found. 

Ce qui n'arrive pas sur http://rssbridge.org/ où là, il y a persistance des flux.

J'utilise Nginx.

Je ne peux donc pas - pour l'instant - ajouter mes "flux spéciaux" parsés à OwnCloud News.

Que faire ?

Merci d'avance,

HLFH commented 11 years ago
git clone http://git.hoa.ro/arthur/rss-bridge-portal.git rss-bridge
cd rss-bridge
git clone https://github.com/sebsauvage/rss-bridge.git
cd rss-bridge
mkdir -p vendor/simplehtmldom/ 
wget 'http://sourceforge.net/projects/simplehtmldom/files/simple_html_dom.php/download' -O vendor/simplehtmldom/simple_html_dom.php
cd /var/www
chown -R http:http rss-bridge/ #THE ISSUE WAS SOLVED HERE

vim /etc/nginx/conf.d/rss-bridge.conf
server {
listen 80;
listen 443 ssl;
server_name rss.surfnote.net;
ssl_certificate      /etc/nginx/ssl/cacert/surfnote_crt.pem;
ssl_certificate_key  /etc/nginx/ssl/cacert/surfnote_privatekey.pem;
root /var/www/rss-bridge/;
access_log /var/log/nginx/rss-bridge.access.log;
error_log /var/log/nginx/rss-bridge.error.log;
location ~* \ (gif|jpg|png) {
expires 30d;
}

rewrite ^/b/(.+)/(.+)/(.)/(.+)/$ /rss-bridge/index.php?action=display&bridge=$1Bridge&format=$2Format&$3=$4 last;
rewrite ^/b/(.+)/(.+)/$ /rss-bridge/index.php?action=display&bridge=$1Bridge&format=$2Format last;

location / {
index index.php index.html index.htm;
try_files $uri /public/$uri /index.php$is_args$args;
}

location ~ .php$ {
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www/rss-bridge/$fastcgi_script_name;
include fastcgi_params;
}
}
:wq!

I'm now using OwnCloud News + the Android App and Rss-Bridge with Portal : it's fully working ! Better than Selfoss :)