50 lines
1.6 KiB
Plaintext
50 lines
1.6 KiB
Plaintext
|
|
|
|
|
|
server {
|
|
|
|
listen 80 default_server;
|
|
# server_name _;
|
|
root /var/www/html;
|
|
|
|
# Add index.php to the list if you are using PHP
|
|
# index index.html index.htm index.nginx-debian.html;
|
|
|
|
location /service1 {
|
|
|
|
rewrite /service1/(.*) /$1 break;
|
|
proxy_pass http://127.0.0.1:6001/; # Replace with the address of your .NET Core application
|
|
}
|
|
location /service2 {
|
|
|
|
rewrite /service2/(.*) /$1 break;
|
|
proxy_pass http://127.0.0.1:6002/; # Replace with the address of your .NET Core application
|
|
}
|
|
location /service3 {
|
|
|
|
rewrite /service3/(.*) /$1 break;
|
|
proxy_pass http://127.0.0.1:6003/; # Replace with the address of your .NET Core application
|
|
}
|
|
location /service4 {
|
|
|
|
rewrite /service4/(.*) /$1 break;
|
|
proxy_pass http://127.0.0.1:6004/; # Replace with the address of your .NET Core application
|
|
}
|
|
location /service5 {
|
|
|
|
rewrite /service5/(.*) /$1 break;
|
|
proxy_pass http://127.0.0.1:6005/; # Replace with the address of your .NET Core application
|
|
}
|
|
location /service6 {
|
|
|
|
rewrite /service6/(.*) /$1 break;
|
|
proxy_pass http://127.0.0.1:6006/; # Replace with the address of your .NET Core application
|
|
}
|
|
location /service7 {
|
|
|
|
rewrite /service7/(.*) /$1 break;
|
|
proxy_pass http://127.0.0.1:6007/; # Replace with the address of your .NET Core application
|
|
}
|
|
|
|
}
|