add nginx localhost site

This commit is contained in:
pedro 2024-03-18 21:16:32 +01:00
parent c306ed1716
commit 91c3ad7839
1 changed files with 59 additions and 0 deletions

59
nginx-localhost.site Normal file
View File

@ -0,0 +1,59 @@
server {
server_name localhost;
listen 80;
listen [::]:80;
location /.well-known {
default_type "text/plain";
allow all;
root /var/www/html;
}
location / {
proxy_pass http://localhost:9091;
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;
}
}
server {
server_name idhub2;
listen 80;
listen [::]:80;
location /.well-known {
default_type "text/plain";
allow all;
root /var/www/html;
}
location / {
proxy_pass http://idhub2:9092;
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;
}
}
server {
server_name idhub3;
listen 80;
listen [::]:80;
location /.well-known {
default_type "text/plain";
allow all;
root /var/www/html;
}
location / {
proxy_pass http://idhub3:9093;
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;
}
}