diff options
-rw-r--r-- | config/django.ini | 30 | ||||
-rw-r--r-- | design/templates/base.html | 4 |
2 files changed, 32 insertions, 2 deletions
diff --git a/config/django.ini b/config/django.ini new file mode 100644 index 0000000..83db606 --- /dev/null +++ b/config/django.ini @@ -0,0 +1,30 @@ +# django.ini file +[uwsgi] + +# master +master = true + +# maximum number of processes +processes = 3 + +# the socket (use the full path to be safe) +socket = /tmp/uwsgi.sock + +# with appropriate permissions - *may* be needed +chmod-socket = 664 + +# the base directory +chdir = /home/lxf/apps/luxagraf + +# django's wsgi file +module =config.wsgi + +# the virtualenv +home = /home/lxf/apps/luxagraf/venv + +buffer-size =32768 +plugin=python +limit-as = 2048 +# clear environment on exit +vacuum = true + diff --git a/design/templates/base.html b/design/templates/base.html index 71a9fcf..688f529 100644 --- a/design/templates/base.html +++ b/design/templates/base.html @@ -35,11 +35,11 @@ <nav role="navigation" class="bl"> <ul> <li id="stories"><a href="/jrnl/" title="What we've been up to lately">Journal</a></li> - <li id="adventura"><a href="/adventures" title="Our past and current adventures">Adventures</a></li> + <!--<li id="adventura"><a href="/adventures" title="Our past and current adventures">Adventures</a></li>--> <li id="photos"><a href="/photos/" title="Photos from travels around the world">Photos</a></li> <li id="maps"><a href="/map" title="Maps">Map</a></li> <li id="projects" ><a href="/projects/" title="Projects">Projects</a></li> - <li id="etc" class="last"><a href="/about" title="About Luxagraf">About</a></li> + <li id="etc" class="last"><a href="/about" title="About Luxagraf">About Us</a></li> </ul> </nav> </div> |