Skip to content

Commit

Permalink
Nginx: Static files moved to /opt/app/{media,static}/
Browse files Browse the repository at this point in the history
  • Loading branch information
gollux committed Jul 1, 2024
1 parent a64f4fb commit 47d5f7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nginx/conf.d/ioi.conf
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ server {
gzip_types text/plain application/x-javascript text/xml text/css application/xml;

location /static {
alias /usr/src/app/static;
alias /opt/translate/app/static;
}

location /media {
alias /usr/src/app/media;
alias /opt/translate/app/media;
}

location / {
Expand Down

0 comments on commit 47d5f7c

Please sign in to comment.