python 프로 그래 밍 (nginx, uwsgi, webpy)
7659 단어 python 프로 그래 밍
생산 과정 에서 nginx + uwsgi + webpy 의 방법 으로 환경 배 치 를 하 는데 오늘 은 이 몇 가지 도구 로 사 이 트 를 배치 하 는 방법 을 배 워 서 기록 하 는 것 을 배 웠 습 니 다.
1. webpy 기반 파일 server. py 준비
#!/usr/bin/python
import web
urls = ('/', 'Hello')
class Hello(object):
def GET(self):
return 'Hello world'
app = web.application(urls, globals())
application = app.wsgifunc()
2, 설치 uwsgi
sudo apt-get install uwsgi
3. uwsgi 의 python 플러그 인 설치
sudo apt-get install uwsgi-plugin-python
4. uwsgi 의 프로필 을 준비 하고 cf. ini 로 가정 합 니 다.
[uwsgi]
http-socket = :9090
plugin = python
wsgi-file = /media/sf_Desktop/process/server.py
process = 3
5. uwsgi 를 이용 하여 ini 파일 을 실행 합 니 다.
uwsgi --ini cf.ini
6. 사이트 운영 여부 확인
브 라 우 저 에 127.0.0.1: 9090 을 입력 하면 됩 니 다.
7. nginx 설정, cf. ini 수정
nginx 와 uwsgi 의 소통 이 필요 하 다 면 cf. ini 설정 을 수정 하고 http - socket 을...
socket = 127.0.0.1:9090
nginx. conf 파일 을 직접 바 꿉 니 다. 즉,
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 256;
#gzip on;
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
include /etc/nginx/uwsgi_params;
uwsgi_pass 127.0.0.1:9090;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
#error_page 500 502 503 504 /50x.html;
#location = /50x.html {
# root html;
#}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
8. 검증 테스트
브 라 우 저 를 찾 아 127.0.0.1 을 직접 입력 하여 인쇄 출력 이 있 는 지 확인 하 세 요.
a. nginx 를 다시 설정 하려 면 service nginx restart 를 직접 사용 하면 됩 니 다. nginx 출력 이 잘못 되면 / var / log / nginx / 에서 오류 로그 출력 c. nginx. conf 는 보통 / etc / nginx 아래 에 저 장 됩 니 다. nginx 의 웹 페이지 는 보통 / usr / share / nginx 아래 에 저 장 됩 니 다. nginx - t 로 nginx. conf 파일 의 설정 이 올 바른 지 확인 할 수 있 습 니 다.