27 lines
		
	
	
		
			686 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			686 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| ```yaml
 | |
| http:
 | |
|   middlewares:
 | |
|     authentik:
 | |
|       forwardAuth:
 | |
|         address: http://outpost.company:9000/akprox/auth/traefik
 | |
|         trustForwardHeader: true
 | |
|         authResponseHeaders:
 | |
|           - Set-Cookie
 | |
|           - X-authentik-username
 | |
|           - X-authentik-groups
 | |
|           - X-authentik-email
 | |
|           - X-authentik-name
 | |
|           - X-authentik-uid
 | |
|   routers:
 | |
|     default-router:
 | |
|       rule: "Host(`app.company`)"
 | |
|       middlewares:
 | |
|         - name: authentik
 | |
|       priority: 10
 | |
|       services: # Unchanged
 | |
|     default-router-auth:
 | |
|       match: "Host(`app.company`) && PathPrefix(`/akprox/`)"
 | |
|       priority: 15
 | |
|       services: http://*ip of your outpost*:9000/akprox
 | |
| ```
 | 
