mirror of
https://github.com/osmarks/meme-search-engine.git
synced 2025-04-21 10:13:13 +00:00
21 lines
309 B
Nginx Configuration File
21 lines
309 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
|
|
location / {
|
|
root /app/clipfront2/static;
|
|
index index.html;
|
|
}
|
|
|
|
location /memes/ {
|
|
alias /data/memes/;
|
|
}
|
|
|
|
location /thumbs/ {
|
|
alias /data/thumbs/;
|
|
}
|
|
|
|
location /backend {
|
|
proxy_pass http://localhost:1707/;
|
|
}
|
|
}
|