Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- sqlite
- PyQt
- ASP
- 함수
- tensorflow
- python
- Linux
- MS-SQL
- PER
- PyQt5
- Excel
- 맛집
- node.js
- MySQL
- javascript
- Unity
- flutter
- pandas
- ubuntu
- GIT
- 라즈베리파이
- IOS
- mssql
- 다이어트
- 날짜
- 유니티
- swift
- urllib
- 리눅스
- port
Archives
아미(아름다운미소)
[python] Flask WSGI 어플리케이션 본문
- flask소스를 올릴 폴더생성 및 권한부여
$sudo mkdir miniblog $sudo chmod -R 775 /home/pi/WWW/miniblog $sudo chown -R pi:www-data /home/pi/WWW/miniblog
$sudo apt-get update $sudo apt-get upgrade $sudo apt-get install apache2 libapache2-mod-wsgi python-setuptools python-flask $sudo apt-get install libapache2-mod-wsgi
$sudo nano /etc/apache2/ports.conf
# If you just change the port or add more ports here, you will likely also # have to change the VirtualHost statement in # /etc/apache2/sites-enabled/000-default.conf Listen 7777Listen 443 Listen 443 # vim: syntax=apache ts=4 sw=4 sts=4 sr noet
$sudo nano /etc/apache2/apache2.conf
Options Indexes FollowSymLinks AllowOverride None Require all granted
import sys sys.path.insert(0, '/home/pi/WWW/miniblog') from miniblog import app as application
$sudo nano /etc/apache2/sites-available/miniblog.conf- 아파치환경파일 수정
#Listen 7777 ServerName www.todaymart.com-가상 호스트를 활성화 후 아파치 reloadServerAdmin ljj777@naver.com DocumentRoot /home/pi/WWW/miniblog # DirectoryIndex index.php index.html # WSGIDaemonProcess miniblog user=pi group=www-data threads=5 WSGIDaemonProcess miniblog threads=5 # WSGIProcessGroup miniblog WSGIScriptAlias / /home/pi/WWW/miniblog/miniblog.wsgi # WSGIScriptAlias /miniblog /home/pi/WWW/miniblog/miniblog.wsgi WSGIProcessGroup miniblog WSGIApplicationGroup %{GLOBAL} # WSGIScriptReloading On Order deny,allow Allow from all # Require all granted ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined
$sudo a2ensite miniblog $sudo /etc/init.d/apache2 reload
'랭귀지 > python' 카테고리의 다른 글
python으로 REST API 호출 (0) | 2018.01.05 |
---|---|
파이썬 이미지 처리(Pillow) (0) | 2018.01.03 |
[python] py2app을 통한 OS X용 실행파일 만들기 (0) | 2017.12.28 |
[python] py2exe를 통한 Windows용 실행파일 만들기 (0) | 2017.12.28 |
Python Django 우분투 설치 (0) | 2017.12.27 |
Comments