diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 6f11b54..8695c2e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -11,10 +11,6 @@ jobs: - name: Checkout backend repo uses: actions/checkout@v2 - # Set up Docker - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 - # Log in to Docker Hub - name: Log in to Docker Hub uses: docker/login-action@v3 diff --git a/nginx/default.conf b/nginx/default.conf index 17e7634..649a281 100644 --- a/nginx/default.conf +++ b/nginx/default.conf @@ -19,7 +19,7 @@ server { ssl_certificate_key /etc/letsencrypt/live/talker.fun/privkey.pem; location / { - root /usr/share/nginx/html/frontend; # Updated path + root /usr/share/nginx/html/frontend; try_files $uri $uri/ /index.html; }