我是一名应用程序开发人员,对系统管理员/服务器配置任务知之甚少。
我有一个 nginx 服务器,通过 VPS 上的 uWSGI 与 Flask Web 应用程序通信。我正尝试连接到 Google SMTP 以向我的注册用户发送邮件。Python 代码在我的本地主机上都可以运行,但我不知道如何配置 nginx 以与 Google SMTP 通信。
经过一番研究,我发现了 nginx_mail_core 模块,以及 nginx 配置中的一些“邮件”块 - 但其中大部分都是比较陌生的。如果确实是我需要配置的邮件块,请提供示例。
这是我当前的 nginx 配置文件:
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;
upstream uwsgicluster {
server 127.0.0.1:8080;
}
# Configuration for Nginx
server {
# Running port
listen 80;
# Settings to by-pass for static files
location ^~ /app/static/ {
root /home/dane/MyApplication/app/static;
}
# Proxying connections to application servers
location / {
include uwsgi_params;
uwsgi_pass uwsgicluster;
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;
}
}
}
提前致谢!