astroport/www/oasis.conf

18 lines
289 B
Plaintext
Raw Normal View History

2020-05-18 04:35:36 +02:00
server {
listen _PORT_;
listen [::]:_PORT_;
root /var/www/loveland/_APPLI_;
2020-05-23 00:06:53 +02:00
server_name _MY_NODE_NAME_;
2020-05-18 04:35:36 +02:00
location / {
2020-05-23 14:51:11 +02:00
proxy_pass http://_LHOST_;
2020-05-18 04:35:36 +02:00
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $remote_addr;
}
}