#!/usr/bin/env bash
set -e

if [[ -f $1/.nginx ]]; then
  echo "nginx"
  exit 0
else
  exit 1
fi