| 1234567891011121314151617181920212223242526 |
- worker_processes 1;
- events {
- worker_connections 1024;
- }
- http {
- include mime.types;
- default_type application/octet-stream;
- sendfile on;
- keepalive_timeout 65;
- upstream api.blog.com {
- server 127.0.0.1:9033;
- }
- server {
- listen 80;
- server_name xxxxx.com;
- location / {
- proxy_pass http://xxxxx.com/;
- }
- }
- }
|