This commit is contained in:
Jose Conde
2024-07-17 22:52:07 +02:00
parent 4e75c3af77
commit 54bd7f3840
18 changed files with 242 additions and 79 deletions

6
nginx/default.conf Normal file
View File

@ -0,0 +1,6 @@
server {
location / {
root /var/www/html;
try_files $uri $uri/ /index.html;
}
}

23
nginx/nginx.conf Normal file
View File

@ -0,0 +1,23 @@
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
sendfile off;
keepalive_timeout 60;
#gzip on;
include /etc/nginx/conf.d/*.conf;
}