Wisdom Tooth Pain!

Had my two upper wisdom teeth extracted on Friday. Though it’s for my oral health, it’s not a very enjoying experience to go through the surgery. My already plump cheeks look even plumper because of swelling, and it hurt a lot initially but pain has gone down a lot since Friday. I am not enjoying the soft food diet very much. Damn, I want to eat steak!

django on apache2 with mod_wsgi

Reference: https://docs.djangoproject.com/en/dev/howto/deployment/wsgi/modwsgi/ Sitename: vkrm Location: /work/vkrm 1. Install mod_wsgi (and Apache if not already). I had both already installed (I checked for mod_wsgi by running “yum install mod_wsgi”). If not, follow instructions on: http://code.google.com/p/modwsgi/wiki/InstallationInstructions 2. Enable “mod_wsgi” and httpd.conf su -c vi /etc/httpd/conf/httpd.conf Add line: LoadModule wsgi_module modules/mod_wsgi.so 3. Create a static directory in your site. Inside the directory that contains “manage.py”, run: mkdir static 4. Copy admin static files python manage.py collectstatic mv admin …

Read moredjango on apache2 with mod_wsgi