Have you experienced the thing I have done like the following.

2021-03-26 Thread Sangbom Suhk
Hi guyes! Now I'm trying to install django framework and make python-based web. For this purpose, I installed apache2, python3.8.5 and libapache2-mod-wsgi-py3, and set a virtual host according to the django guide document. My work flow was like the following. 1. apt install apache2 apache2-d

Re: Have you experienced the thing I have done like the following.

2021-03-26 Thread Sangbom Suhk
Yes, I did. It's work fine. 2021년 3월 26일 금요일 오후 11시 37분 8초 UTC+9에 mr.xof...@gmail.com님이 작성: > Are you running your manage.py runserver command in right directory > > On Fri, 26 Mar 2021, 19:06 Sangbom Suhk, wrote: > >> Hi guyes! >> >> Now I'm trying to

Re: Have you experienced the thing I have done like the following.

2021-03-26 Thread Sangbom Suhk
-C. 2021년 3월 26일 금요일 오후 11시 43분 19초 UTC+9에 Sangbom Suhk님이 작성: > Yes, I did. It's work fine. > > 2021년 3월 26일 금요일 오후 11시 37분 8초 UTC+9에 mr.xof...@gmail.com님이 작성: > >> Are you running your manage.py runserver command in right directory >> >> On Fri, 26 Mar 2021

Re: Have you experienced the thing I have done like the following.

2021-03-26 Thread Sangbom Suhk
port os from django.core.wsgi import get_wsgi_application """ os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_app.settings') """ os.environ["DJANGO_SETTINGS_MODULE"] = "django_app.settings" application = get_wsgi_applicati

Re: Have you experienced the thing I have done like the following.

2021-03-26 Thread Sangbom Suhk
> import os > > from django.core.wsgi import get_wsgi_application > """ > os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_app.settings') > """ > os.environ["DJANGO_SETTINGS_MODULE"] = "django_app.setti