Prune: Remove unused files from alternative configurations.
This commit is contained in:
5
init.sql
5
init.sql
@@ -1,5 +0,0 @@
|
|||||||
-- init.sql
|
|
||||||
CREATE DATABASE IF NOT EXISTS demo;
|
|
||||||
CREATE USER IF NOT EXISTS 'teddy'@'%' IDENTIFIED BY 'slap_chop_rinse_erect';
|
|
||||||
GRANT ALL PRIVILEGES ON demo.* TO 'teddy'@'%';
|
|
||||||
FLUSH PRIVILEGES;
|
|
||||||
39
nginx.conf
39
nginx.conf
@@ -1,39 +0,0 @@
|
|||||||
user nginx;
|
|
||||||
worker_processes auto;
|
|
||||||
pid /run/nginx.pid;
|
|
||||||
include /etc/nginx/modules-enabled/*.conf;
|
|
||||||
|
|
||||||
events {
|
|
||||||
worker_connections 1024;
|
|
||||||
multi_accept on;
|
|
||||||
}
|
|
||||||
|
|
||||||
http {
|
|
||||||
sendfile on;
|
|
||||||
tcp_nopush on;
|
|
||||||
tcp_nodelay on;
|
|
||||||
keepalive_timeout 65;
|
|
||||||
types_hash_max_size 2048;
|
|
||||||
|
|
||||||
# Set default MIME type
|
|
||||||
default_type application/octet-stream;
|
|
||||||
|
|
||||||
# SSL Settings
|
|
||||||
ssl_protocols TLSv1.2 TLSv1.3;
|
|
||||||
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";
|
|
||||||
|
|
||||||
# Virtual Host Configs
|
|
||||||
include /etc/nginx/conf.d/*.conf;
|
|
||||||
include /etc/nginx/sites-enabled/*.conf;
|
|
||||||
|
|
||||||
# MIME Types
|
|
||||||
include /etc/nginx/mime.types;
|
|
||||||
}
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
|
|
||||||
Flask==3.0.3
|
|
||||||
gunicorn==23.0.0
|
|
||||||
flask_wtf
|
|
||||||
flask_sqlalchemy
|
|
||||||
flask_cors
|
|
||||||
flask_mail
|
|
||||||
authlib
|
|
||||||
jwt
|
|
||||||
mysqlclient
|
|
||||||
stripe
|
|
||||||
python_dotenv
|
|
||||||
authlib
|
|
||||||
pydantic
|
|
||||||
# psycopg2
|
|
||||||
requests
|
|
||||||
Reference in New Issue
Block a user