본문 바로가기

공부

Apache2.2 mod_wsgi window 세팅

진짜 지랄맞게 오래걸렸다

다행히 회사 부장님께서 도와주셔서 좀 해결을 할 수가 있었다


1. ahache에 module 폴더에 다운받은 mod_wsgi.so 파일을 집어넣는다


2. httpd.conf 파일을 열고 수정을 한다


LoadModule wsgi_module modules/mod_wsgi-win32-ap22py27-3.3.so


WSGIScriptAlias /test_api2     C:/Python27/Lib/site- packages/django/bin/test_api2/bubble_ocean/wsgi_app.py

WSGIPythonPath C:/Python27/Lib/site-packages/django/bin/test_api2


<Directory C:/Python27/Lib/site-packages/django/bin/test_api2/bubble_ocean>

   Order allow,deny

   allow from all    

</Directory>



WSGIScriptAlias /test_api2(만들고 싶은 특정 name)        C:/Python27/Lib/site- packages/django/bin/test_api2/bubble_ocean/wsgi_app.py

(wsgi_app.py의 주소)


WSGIPythonPath C:/Python27/Lib/site-packages/django/bin/test_api2

(python 프로젝트 주소)

<Directory C:/Python27/Lib/site-packages/django/bin/test_api2/bubble_ocean>

  (wsgi_app.py가 존재하는 폴더)

   Order allow,deny

   allow from all    

   (위 두부분은 권한 설정)

</Directory>



두부분만 하면 끝이다 ㅜ.ㅠ


난 왜이리 어려웠니 ㅜ.ㅠ

728x90