mirror of
				https://github.com/9001/copyparty.git
				synced 2025-10-31 12:43:13 -06:00 
			
		
		
		
	features which should be good to go: * user groups * assigning permissions by group * dynamically created volumes based on username/groupname * rebuild vfs when new users/groups appear but several important features still pending; * detect dangerous configurations * dynamic vol below readable path * remember volumes created during previous runs * helps prevent unintended access * correct filesystem-scan on startup
		
			
				
	
	
		
			26 lines
		
	
	
		
			262 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			262 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| # -*- mode: yaml -*-
 | |
| # vim: ft=yaml:
 | |
| 
 | |
| [global]
 | |
|   idp-h-usr: x-idp-user
 | |
|   idp-h-grp: x-idp-group
 | |
| 
 | |
| [accounts]
 | |
|   ua: pa
 | |
|   ub: pb
 | |
| 
 | |
| [/vu/${u}]
 | |
|   /u-${u}
 | |
|   accs:
 | |
|     r: ${u}
 | |
| 
 | |
| [/vg/${g}1]
 | |
|   /g1-${g}
 | |
|   accs:
 | |
|     r: @${g}
 | |
| 
 | |
| [/vg/${g}2]
 | |
|   /g2-${g}
 | |
|   accs:
 | |
|     r: @${g}, ua
 |