mirror of
				https://github.com/arcan1s/ahriman.git
				synced 2025-11-03 23:33:41 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			153 B
		
	
	
	
		
			Nginx Configuration File
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			153 B
		
	
	
	
		
			Nginx Configuration File
		
	
	
	
	
	
server {
 | 
						|
    listen 80;
 | 
						|
 | 
						|
    location /repo {
 | 
						|
        rewrite ^/repo/(.*) /$1 break;
 | 
						|
        autoindex on;
 | 
						|
        root /srv/ahriman/repository;
 | 
						|
    }
 | 
						|
}
 |