Adding checks on AniNIX/Grimoire to Core

This commit is contained in:
2023-05-30 15:51:36 -05:00
parent 921e45afda
commit 75bf57c131
3 changed files with 5 additions and 38 deletions

View File

@@ -1,37 +0,0 @@
user http;
worker_processes 4;
# Logs
error_log logs/error.log;
error_log logs/error.log notice;
error_log logs/error.log info;
events {
worker_connections 1024;
}
http {
include mime.types;
include fastcgi.conf;
default_type application/octet-stream;
server_tokens off;
sendfile on;
keepalive_timeout 65;
gzip on;
# Redirect all HTTP to HTTPS
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
location / {
return 301 https://$host$request_uri;
}
}
include ../conf.d/*.conf;
}