46 lines
1.5 KiB
Plaintext
46 lines
1.5 KiB
Plaintext
|
|
|
|
|
|
server {
|
|
|
|
listen 80;
|
|
server_name dev-services.damageasessment.net;
|
|
|
|
location /service1 {
|
|
|
|
rewrite /service1/(.*) /$1 break;
|
|
proxy_pass http://172.17.0.1:80/; # Replace with the address of your .NET Core application
|
|
}
|
|
location /service2 {
|
|
|
|
rewrite /service2/(.*) /$1 break;
|
|
proxy_pass http://172.17.0.1:80/; # Replace with the address of your .NET Core application
|
|
}
|
|
location /service3 {
|
|
|
|
rewrite /service3/(.*) /$1 break;
|
|
proxy_pass http://172.17.0.1:80/; # Replace with the address of your .NET Core application
|
|
}
|
|
location /service4 {
|
|
|
|
rewrite /service4/(.*) /$1 break;
|
|
proxy_pass http://172.17.0.1:80/; # Replace with the address of your .NET Core application
|
|
}
|
|
location /service5 {
|
|
|
|
rewrite /service5/(.*) /$1 break;
|
|
proxy_pass http://172.17.0.1:80/; # Replace with the address of your .NET Core application
|
|
}
|
|
location /service6 {
|
|
|
|
rewrite /service6/(.*) /$1 break;
|
|
proxy_pass http://172.17.0.1:80/; # Replace with the address of your .NET Core application
|
|
}
|
|
location /service7 {
|
|
|
|
rewrite /service7/(.*) /$1 break;
|
|
proxy_pass http://172.17.0.1:80/; # Replace with the address of your .NET Core application
|
|
}
|
|
|
|
}
|