Created
June 16, 2016 21:31
-
-
Save pedro108/05d4191ff7b5e60b6b0ccad914a21d69 to your computer and use it in GitHub Desktop.
Snippet de código para o artigo "Como instalar e configurar o Monit para gerenciar os processos de sua aplicação Web em produção."
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## | |
# Regra para definir o servidor de envio de email. Neste exemplo é mostrado a configuração do envio através de uma conta | |
# em um servidor SMTP, por login e senha, usando encriptação TLSv1 | |
# | |
set mailserver smtp.gmail.com | |
port 587 | |
username "[email protected]" | |
password "####" | |
using tlsv1 | |
## Regra para redefinir o formato do email enviado: | |
## Monit by default uses the following format for alerts if the the mail-format | |
## statement is missing:: | |
## --8<-- | |
## set mail-format { | |
## from: monit@$HOST | |
## subject: monit alert -- $EVENT $SERVICE | |
## message: $EVENT Service $SERVICE | |
## Date: $DATE | |
## Action: $ACTION | |
## Host: $HOST | |
## Description: $DESCRIPTION | |
## | |
## Your faithful employee, | |
## Monit | |
## } | |
## --8<-- | |
## | |
# Definição de contas de usuário que irão receber os emails de alerta do Monit | |
# | |
set alert [email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment