1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-08-02 19:55:18 +02:00
This commit is contained in:
Sean Morley 2024-07-09 09:11:16 -04:00
parent 21a935fea5
commit 7b9023dd07
3 changed files with 34 additions and 1 deletions

8
proxy/nginx.conf Normal file
View file

@ -0,0 +1,8 @@
server {
listen 80;
server_name localhost;
location /media/ {
alias /app/media/;
}
}