We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdbd99f commit 6caaf60Copy full SHA for 6caaf60
compose/dev/compose.yml
@@ -78,7 +78,7 @@ services:
78
nginx:
79
image: nginx:alpine
80
ports:
81
- - 80:80
+ - 8080:8080
82
volumes:
83
- ./nginx.conf:/etc/nginx/conf.d/default.conf
84
compose/dev/nginx.conf
@@ -1,7 +1,7 @@
1
server {
2
3
- listen 80;
4
- listen [::]:80;
+ listen 8080;
+ listen [::]:8080;
5
6
server_name localhost;
7
@@ -34,8 +34,8 @@ server {
34
}
35
36
37
38
39
server_name prisma.127.0.0.1.sslip.io;
40
location / {
41
# rewrite ^/prisma(.*)$ /prisma break;
0 commit comments