mirror of
				https://github.com/arcan1s/ahriman.git
				synced 2025-11-04 07:43:42 +00:00 
			
		
		
		
	feat: read username if email is not available for oauth provider
Also add recipe for OAuth with GitHub setup
This commit is contained in:
		
							
								
								
									
										18
									
								
								recipes/oauth/nginx.conf
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								recipes/oauth/nginx.conf
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,18 @@
 | 
			
		||||
server {
 | 
			
		||||
    listen 80;
 | 
			
		||||
 | 
			
		||||
    location /repo {
 | 
			
		||||
        rewrite ^/repo/(.*) /$1 break;
 | 
			
		||||
        autoindex on;
 | 
			
		||||
        root /srv/ahriman/repository;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    location / {
 | 
			
		||||
        proxy_set_header Host $host;
 | 
			
		||||
        proxy_set_header X-Real-IP $remote_addr;
 | 
			
		||||
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
 | 
			
		||||
        proxy_set_header X-Forwarder-Proto $scheme;
 | 
			
		||||
 | 
			
		||||
        proxy_pass http://backend:8080;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user