Initial Commit

This commit is contained in:
Han Wu
2021-12-02 11:56:20 +00:00
commit a7899575a8
30 changed files with 2366 additions and 0 deletions

69
robots/nginx.conf Normal file
View File

@@ -0,0 +1,69 @@
worker_processes auto;
pid /run/nginx.pid;
events {
worker_connections 768;
# multi_accept on;
}
http {
##
# Basic Settings
##
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
# server_tokens off;
# server_names_hash_bucket_size 64;
# server_name_in_redirect off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
##
# SSL Settings
##
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
ssl_prefer_server_ciphers on;
##
# Logging Settings
##
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
##
# Gzip Settings
##
gzip on;
gzip_disable "msie6";
# gzip_vary on;
# gzip_proxied any;
# gzip_comp_level 6;
# gzip_buffers 16 8k;
# gzip_http_version 1.1;
# gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
##
# Virtual Host Configs
##
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
server{
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
}
}

26
robots/robots-compose.yml Normal file
View File

@@ -0,0 +1,26 @@
version: "3.3"
services:
nginx:
image: nginx:stable-alpine
volumes:
- ./www:/usr/share/nginx/html
- ./nginx.conf:/etc/nginx/nginx.conf
deploy:
labels:
- "traefik.enable=true"
- "traefik.http.routers.robot.rule=Host(`robots.trustai.uk`)"
- "traefik.http.routers.robot.entrypoints=web"
- "traefik.http.services.robot.loadbalancer.server.port=80"
# TLS
- "traefik.http.routers.robots.rule=Host(`robots.trustai.uk`)"
- "traefik.http.routers.robots.entrypoints=websecure"
- "traefik.http.routers.robots.tls.certresolver=myhttpchallenge"
# Redirect
- "traefik.http.routers.robot.middlewares=https_redirect"
- "traefik.http.middlewares.https_redirect.redirectscheme.scheme=https"
networks:
- traefik-public
networks:
traefik-public:
external: true

548
robots/www/index.html Normal file

File diff suppressed because one or more lines are too long