问题
如何在我的ubuntu 14.04 lts os(nginx-gunicorn)上托管其他用户(Windows机器)可以使用我的计算机名称访问它的烧瓶应用程序?我已插入Windows网络,计算机名称为“argonaut”。
目前
我可以访问该应用,但其他计算机则无法访问该应用。但是,如果我使用刻录机开发Web服务器从Windows计算机运行应用程序,则其他计算机可以访问该应用程序。有什么不同?
再次,如果
我主持ubuntu
我有权访问,但其他人在使用时没有
http://argonaut:8000
如果我在Windows机器上托管
网络中的每个人都可以使用(期望的访问 - 但我不想使用Windows)访问该站点
http://argonaut:8000
我不确定从哪里开始调查。
My Flask run.py
from flask import Flask
from werkzeug.contrib.fixers import ProxyFix
app = Flask(__name__)
@app.route('/')
def hello():
return "Hellooxx world!"
app.wsgi_app = ProxyFix(app.wsgi_app)
if __name__ == '__main__':
app.run(host='0.0.0.0')
我设置host ='0.0.0.0'希望每个人都可以访问它。
我跑的时候
chet@argonaut:~$ netstat -tupln | grep ':8000'
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
tcp 0 0 127.0.0.1:8000 0.0.0.0:* LISTEN 3216/python
nginx config
worker_processes 1;
events {
worker_connections 1024;
}
http {
sendfile on;
gzip on;
gzip_http_version 1.0;
gzip_proxied any;
gzip_min_length 500;
gzip_disable "MSIE [1-6]\.";
gzip_types text/plain text/xml text/css
text/comma-separated-values
text/javascript
application/x-javascript
application/atom+xml;
# Configuration containing list of application servers
upstream app_servers {
server 0.0.0.0:8080;
# server 127.0.0.1:8081;
# ..
# .
}
# Configuration for Nginx
server {
# Running port
listen 80;
# Settings to serve static files
location ^~ /static/ {
# Example:
# root /full/path/to/application/static/file/dir;
root /app/static/;
}
# Serve a static file (ex. favico)
# outside /static directory
location = /favico.ico {
root /app/favico.ico;
}
# Proxy connections to the application servers
# app_servers
location / {
proxy_pass http://app_servers;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $server_name;
}
}
}
谢谢