Saltar a contenido principal


How to link YACY search page


!Friendica Support Hi, I added a P2P YACY search engine on my Friendica instance:


That's quite cool IMHO because I can crawl and index web pages that are ignored by Google and friends, building up a search network of communities. Currently, my 'senior' node is connected to >100 servers.

My question: How can I create a publicly accessible link to the search page? E.g. as mexico-pensante.blog/p2p-search? It should link to <http://mexico-pensante.blog:8090>?

Friendica Support reshared this.

in reply to Robert Winkler

@Robert Winkler Tipp: The SSL certificate isn't working. Maybe you want to only let it run on http://127.0.0.1:8090 and then add a reverse-proxy, under a sub-domain e.g. search.mexico-pensante.blog instead?
in reply to Robert Winkler

Finally, I solved it with a simple HTML re-direction:
~~~
/var/www/friendica/yacy# cat index.html
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="0;url='http://mexico-pensante.blog:8090'" />
</head>
<body>
<p>You will be redirected to the Mexico Pensante YACY Search!</p>
</body>
</html>
~~~

Friendica Support reshared this.