Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,31 +41,31 @@ COPY --from=builder /build/web/apps/embed/out /out/embed

COPY <<EOF /etc/nginx/conf.d/default.conf
server {
listen 3000; root /out/photos;
listen 3000; listen [::]:3000; root /out/photos;
location / { try_files \$uri \$uri.html /index.html; }
}
server {
listen 3001; root /out/accounts;
listen 3001; listen [::]:3001; root /out/accounts;
location / { try_files \$uri \$uri.html /index.html; }
}
server {
listen 3002; root /out/photos;
listen 3002; listen [::]:3002; root /out/photos;
location / { try_files \$uri \$uri.html /index.html; }
}
server {
listen 3003; root /out/auth;
listen 3003; listen [::]:3003; root /out/auth;
location / { try_files \$uri \$uri.html /index.html; }
}
server {
listen 3004; root /out/cast;
listen 3004; listen [::]:3004; root /out/cast;
location / { try_files \$uri \$uri.html /index.html; }
}
server {
listen 3005; root /out/share;
listen 3005; listen [::]:3005; root /out/share;
location / { try_files \$uri \$uri.html /index.html; }
}
server {
listen 3006; root /out/embed;
listen 3006; listen [::]:3006; root /out/embed;
location / { try_files \$uri \$uri.html /index.html; }
}
EOF
Expand Down