mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-10-31 15:53:33 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			61 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| ## Version 2022/08/06
 | |
| # Fail2Ban action configuration for apprise-api
 | |
| # Author: Roxedus https://github.com/Roxedus
 | |
| # Modified by: nemchik https://github.com/nemchik
 | |
| 
 | |
| [Definition]
 | |
| 
 | |
| # Option:  actionstart
 | |
| # Notes.:  command executed once at the start of Fail2Ban.
 | |
| # Values:  CMD
 | |
| #
 | |
| actionstart = curl -X POST -d '{"tag": "<tag>", "type": "info", "body": "The jail <name> as been started successfully."}' \
 | |
|           -H "Content-Type: application/json" \
 | |
|           <url>
 | |
| 
 | |
| # Option:  actionstop
 | |
| # Notes.:  command executed once at the end of Fail2Ban
 | |
| # Values:  CMD
 | |
| #
 | |
| actionstop = curl -X POST -d '{"tag": "<tag>", "type": "info", "body": "The jail <name> has been stopped."}' \
 | |
|           -H "Content-Type: application/json" \
 | |
|           <url>
 | |
| 
 | |
| # Option:  actioncheck
 | |
| # Notes.:  command executed once before each actionban command
 | |
| # Values:  CMD
 | |
| #
 | |
| actioncheck =
 | |
| 
 | |
| # Option:  actionban
 | |
| # Notes.:  command executed when banning an IP. Take care that the
 | |
| #          command is executed with Fail2Ban user rights.
 | |
| # Tags:    See jail.conf(5) man page
 | |
| # Values:  CMD
 | |
| #
 | |
| 
 | |
| actionban = curl -X POST -d '{"tag": "<tag>", "type": "warning", "body": "The IP <ip> has just been banned from <name> after <failures> attempts."}' \
 | |
|           -H "Content-Type: application/json" \
 | |
|           <url>
 | |
| 
 | |
| # Option:  actionunban
 | |
| # Notes.:  command executed when unbanning an IP. Take care that the
 | |
| #          command is executed with Fail2Ban user rights.
 | |
| # Tags:    See jail.conf(5) man page
 | |
| # Values:  CMD
 | |
| #
 | |
| 
 | |
| actionunban = curl -X POST -d '{"tag": "<tag>", "type": "success", "body": "The IP <ip> has just been unbanned from <name>."}' \
 | |
|           -H "Content-Type: application/json" \
 | |
|           <url>
 | |
| 
 | |
| [Init]
 | |
| 
 | |
| proto = http
 | |
| host = apprise
 | |
| port = 8000
 | |
| key = apprise
 | |
| url = <proto>://<host>:<port>/notify/<key>
 | |
| #tag = fail2ban
 | |
| tag = all
 |