This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
creylopez
/
djangotutorial
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
1
Wiki
Activity
Browse Source
Merge branch 'main' of
http://gitea.reymota.es/creylopez/djangotutorial
main
Celestino Rey
10 months ago
parent
bf9352710e
fcced25492
commit
f57a71c10b
1 changed files
with
8 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+8
-0
nginx/default.conf
+ 8
- 0
nginx/default.conf
View File
@ -17,6 +17,14 @@ server {
proxy_redirect off;
}
location /static/ {
alias /app/wsgi/static/;
}
location /media/ {
alias /app/wsgi/mediafiles/;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
Write
Preview
Loading…
Cancel
Save