CreateMutex
까보면 다나와~

아파치에서 파이썬 돌리기(Configuring the Apache Web Server to Run Python)


1. %SomePath%\apache\conf\httpd.conf


2. "AddHandler cgi-script"를 검색한다.


3. 주석처리가 되어 있다면 풀고 마지막에 .py를 붙힌다.

ex) 

#AddHandler cgi-script .cgi

AddHandler cgi-script .cgi .py


4. 아파치 재시작


5. Py 파일을 만들어서 확인

ex)

#!/usr/bin/python (윈도우 C:\Python27에 파이썬을 설치했다면 #!/Python26/python)

print "Content-type: text/html"

print

print "<html><head>"

print ""

print "</head><body>"

print "Hello."

print "</body></html>"


주소창에서 http://localhost/test.py

  Comments,     Trackbacks