ngdisconf.bash 259 B

123456789101112
  1. #!/bin/bash
  2. ## Este script é o equivalente a utilizar o a2disconf
  3. ## É necessário ter um diretório local com os arquivos de configuração do Nginx
  4. LOCAL_CONF="${HOME}/nginx.d/"
  5. NGINX_CONF="/etc/nginx/conf.d/"
  6. pushd "${NGINX_CONF}"
  7. sudo rm "${1}"
  8. popd