mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-23 23:09:37 +02:00
8 lines
109 B
Nginx Configuration File
8 lines
109 B
Nginx Configuration File
|
server {
|
||
|
listen 80;
|
||
|
server_name localhost;
|
||
|
|
||
|
location /media/ {
|
||
|
alias /app/media/;
|
||
|
}
|
||
|
}
|