mirror of
https://github.com/makefu/bump.git
synced 2024-03-22 11:32:52 +01:00
14 lines
385 B
Text
14 lines
385 B
Text
server {
|
|
listen [::]:80;
|
|
server_name _;
|
|
access_log /var/log/nginx/log/note.log main;
|
|
error_log /var/log/nginx/log/note_error.log;
|
|
default_type text/plain;
|
|
location / {
|
|
proxy_pass http://127.0.0.1:4000/;
|
|
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;
|
|
}
|
|
}
|