diff --git a/nginx_securefit.conf b/nginx_securefit.conf index 387cc94..ae07b47 100644 --- a/nginx_securefit.conf +++ b/nginx_securefit.conf @@ -1,4 +1,9 @@ -- name: Deploy nginx configuration - run: | - sudo /usr/bin/cp ./nginx_securefit.conf /etc/nginx/conf.d/nginx_securefit.conf - sudo /usr/bin/systemctl reload nginx +server { + listen 80; + server_name localhost; + + location / { + return 200 'Nginx configuration deployed successfully!'; + add_header Content-Type text/plain; + } +}