Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Sondre Malerud committed Mar 13, 2025
1 parent ff151e1 commit 0d0f937
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/update_primary_nginx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ jobs:
run: envsubst '$PROD_PORT_PREFIX,$DEV_PORT_PREFIX,$STAG_PORT_PREFIX,$GATEWAY_POSTFIX' < ./nginx_template.txt > nginx_securefit.conf

- name: Copy temporary file to correct place
run: sudo cp nginx_securefit.conf /etc/nginx/conf.d/nginx_securefit.conf
run: cp nginx_securefit.conf /etc/nginx/conf.d/nginx_securefit.conf

- name: Show nginx file
run: sudo cat /etc/nginx/conf.d/nginx_securefit.conf
run: cat /etc/nginx/conf.d/nginx_securefit.conf

- name: Restart Nginx
run: sudo systemctl restart nginx
run: systemctl restart nginx

- name: Verify that nginx configuration works
run: sudo nginx -t
run: nginx -t

0 comments on commit 0d0f937

Please sign in to comment.