mirror of
				https://github.com/searxng/searxng.git
				synced 2025-10-28 09:12:36 -04:00 
			
		
		
		
	Herein we add some hints and suggestions about typical architectures of searx infrastructures. We start with a contribution from @dalf - https://github.com/asciimoo/searx/pull/1776#issuecomment-567917320 thanks @dalf !! Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
		
			
				
	
	
		
			34 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| digraph G {
 | |
| 
 | |
|   node [style=filled, shape=box, fillcolor="#ffffcc", fontname="Sans"];
 | |
|   edge [fontname="Sans"];
 | |
| 
 | |
|   browser [label="Browser", shape=Mdiamond];
 | |
|   rp      [label="Reverse Proxy", href="url to configure reverse proxy"];
 | |
|   filtron [label="Filtron",       href="https://github.com/asciimoo/filtron"];
 | |
|   morty   [label="Morty",         href="https://github.com/asciimoo/morty"];
 | |
|   static  [label="Static files",  href="url to configure static files"];
 | |
|   uwsgi   [label="uwsgi",         href="url to configure uwsgi"]
 | |
|   searx1  [label="Searx #1"];
 | |
|   searx2  [label="Searx #2"];
 | |
|   searx3  [label="Searx #3"];
 | |
|   searx4  [label="Searx #4"];
 | |
| 
 | |
|   browser -> rp [label="HTTPS"]
 | |
| 
 | |
|   subgraph cluster_searx {
 | |
|       label = "Searx instance" fontname="Sans";
 | |
|       bgcolor="#fafafa";
 | |
|       { rank=same; static rp };
 | |
|       rp -> morty      [label="optional: images and HTML pages proxy"];
 | |
|       rp -> static     [label="optional: reverse proxy serves directly static files"];
 | |
|       rp -> filtron    [label="HTTP"];
 | |
|       filtron -> uwsgi [label="HTTP"];
 | |
|       uwsgi -> searx1;
 | |
|       uwsgi -> searx2;
 | |
|       uwsgi -> searx3;
 | |
|       uwsgi -> searx4;
 | |
|   }
 | |
| 
 | |
| }
 |