This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # This script generates a cert that can be used by the client indicated by $1 ip to connect securely to a connection | |
| # initiated by the listening client. | |
| ip=$1 | |
| if [ -z "$ip" ]; then | |
| echo "invalid request. Eg: ./$(basename $0) 192.168.100.30" | |
| exit 1 | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: "3" | |
| services: | |
| web: | |
| build: ./web | |
| container_name: web-client | |
| networks: | |
| - internal-network | |
| server: | |
| build: ./server | |
| container_name: product-service |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| vcl 4.1; | |
| backend default { | |
| .host = "web-client"; | |
| .port = "80"; | |
| } | |
| backend productService { | |
| .host = "product-service"; | |
| .port = "8080"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM debian:jessie | |
| RUN \ | |
| useradd -r -s /bin/false varnishd | |
| # Install Varnish source build dependencies. | |
| RUN \ | |
| apt-get update && apt-get install -y --no-install-recommends \ | |
| automake \ | |
| build-essential \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: "3" | |
| services: | |
| web: | |
| build: ./web | |
| container_name: websocket-client | |
| ports: | |
| - "8081:80" | |
| server: | |
| build: ./server | |
| container_name: product-service |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM nginx | |
| COPY index.html /usr/share/nginx/html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM golang:1.12.1 | |
| WORKDIR /ws-server | |
| ADD main.go go.sum go.mod /ws-server/ | |
| RUN go build | |
| ENTRYPOINT ["/ws-server/product-service"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Products</title> | |
| </head> | |
| <body> | |
| <p>Product List:</p> | |
| <ul id="products"> | |
| </ul> | |
| <script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "encoding/json" | |
| "fmt" | |
| "io/ioutil" | |
| "log" | |
| "net/http" | |
| "sync" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "context" | |
| "fmt" | |
| "log" | |
| "net" | |
| "net/http" | |
| "os" | |
| "sync" |