chore(repo): initialize team collaboration repository
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
server {
|
||||
listen 80;
|
||||
server_name flashops.imagebrewing.com;
|
||||
|
||||
location ^~ /.well-known/acme-challenge/ {
|
||||
auth_basic off;
|
||||
root /var/www/html;
|
||||
default_type text/plain;
|
||||
}
|
||||
|
||||
location / {
|
||||
return 301 https://$host$request_uri;
|
||||
}
|
||||
}
|
||||
|
||||
server {
|
||||
listen 443 ssl;
|
||||
http2 on;
|
||||
server_name flashops.imagebrewing.com;
|
||||
|
||||
ssl_certificate /etc/letsencrypt/live/flashops.imagebrewing.com/fullchain.pem;
|
||||
ssl_certificate_key /etc/letsencrypt/live/flashops.imagebrewing.com/privkey.pem;
|
||||
ssl_protocols TLSv1.2 TLSv1.3;
|
||||
ssl_session_timeout 1d;
|
||||
ssl_session_cache shared:FlashOpsSSL:10m;
|
||||
ssl_session_tickets off;
|
||||
|
||||
access_log /www/wwwlogs/flashops.imagebrewing.com.log;
|
||||
error_log /www/wwwlogs/flashops.imagebrewing.com.error.log;
|
||||
|
||||
add_header X-Content-Type-Options nosniff always;
|
||||
add_header Referrer-Policy strict-origin-when-cross-origin always;
|
||||
add_header X-Frame-Options SAMEORIGIN always;
|
||||
|
||||
location / {
|
||||
proxy_pass http://127.0.0.1:18080;
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "upgrade";
|
||||
proxy_read_timeout 300s;
|
||||
proxy_send_timeout 300s;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user