Skip to content

Commit

Permalink
Refactor Nginx configuration to fix static file path in default.conf
Browse files Browse the repository at this point in the history
  • Loading branch information
drikusroor committed Apr 15, 2024
1 parent 045775b commit 43b7a1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nginx/default.conf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ server {
ssl_certificate_key /etc/letsencrypt/live/brazil.kokokoding.nl/privkey.pem;

location /static/ {
root ./static; # This path should lead to where your static directories are
root static; # This path should lead to where your static directories are
expires 30d;
access_log off;
add_header Cache-Control "public";
Expand Down

0 comments on commit 43b7a1f

Please sign in to comment.