mirror of
				https://github.com/spantaleev/matrix-docker-ansible-deploy.git
				synced 2025-11-04 09:08:56 +01:00 
			
		
		
		
	Merge pull request #1820 from brush/master
Suggested fix to docs for reverse proxy for well-known file
This commit is contained in:
		@@ -98,16 +98,15 @@ server {
 | 
			
		||||
}
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
**For Apache**, it would be something like this:
 | 
			
		||||
**For Apache2**, it would be something like this:
 | 
			
		||||
 | 
			
		||||
```apache
 | 
			
		||||
<VirtualHost *:443>
 | 
			
		||||
	ServerName DOMAIN
 | 
			
		||||
 | 
			
		||||
	SSLProxyEngine on
 | 
			
		||||
	<Location /.well-known/matrix>
 | 
			
		||||
		ProxyPass "https://matrix.DOMAIN/.well-known/matrix"
 | 
			
		||||
	</Location>
 | 
			
		||||
	ProxyPass /.well-known/matrix https://matrix.DOMAIN/.well-known/matrix nocanon
 | 
			
		||||
	ProxyPassReverse /.well-known/matrix https://matrix.DOMAIN/.well-known/matrix nocanon
 | 
			
		||||
 | 
			
		||||
	# other configuration
 | 
			
		||||
</VirtualHost>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user