23 lines
504 B
Nginx Configuration File
23 lines
504 B
Nginx Configuration File
|
# nginx.conf
|
||
|
|
||
|
worker_processes 1;
|
||
|
|
||
|
events {
|
||
|
worker_connections 1024;
|
||
|
}
|
||
|
|
||
|
http {
|
||
|
server {
|
||
|
listen 80;
|
||
|
server_name fckngdev.space;
|
||
|
|
||
|
location / {
|
||
|
proxy_pass http://87.251.87.90:8004/;
|
||
|
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-Proto $scheme;
|
||
|
proxy_buffering off;
|
||
|
}
|
||
|
}
|
||
|
}
|