Skip to content

Commit

Permalink
git ignores compiled js/css in public, fix for nondev nginx config
Browse files Browse the repository at this point in the history
  • Loading branch information
clpetersonucf committed Nov 14, 2024
1 parent e5317fa commit 1376564
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -124,5 +124,8 @@ public/dist/*
!public/dist/path.js
!public/dist/README.md

public/js
public/css

# docker override is now untracked as of v10.3.0
docker/docker-compose.override.yml
2 changes: 2 additions & 0 deletions docker/config/nginx/nginx-nondev.conf
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,8 @@ http {
fastcgi_pass app:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param X-Forwarded-Proto $scheme;
fastcgi_param HTTPS on;
include fastcgi_params;
}

Expand Down

0 comments on commit 1376564

Please sign in to comment.