[GHA] Copy scripts to new dev-tools

Test generate-files.sh
This commit is contained in:
Mitchell Krog 2021-06-21 11:33:56 +02:00
parent 8fc4a3d669
commit 17f99ffdc0
No known key found for this signature in database
GPG key ID: E02E9D10427B6A43
446 changed files with 336799 additions and 1 deletions

View file

@ -0,0 +1,52 @@
worker_processes 1;
include /etc/nginx/modules-enabled/*.conf;
events {
worker_connections 1024;
}
http {
##
# Basic Settings
##
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 90s;
keepalive_requests 1000;
server_tokens off;
client_body_buffer_size 32k;
client_header_buffer_size 1k;
client_max_body_size 50M;
types_hash_max_size 2048;
large_client_header_buffers 4 16k;
variables_hash_max_size 2048;
variables_hash_bucket_size 1024;
include /etc/nginx/mime.types;
default_type application/octet-stream;
##
# Logging Settings
##
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
error_log /var/log/nginx/error.log warn;
##
# Virtual Host Configs
##
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}