[fix] Added sample test wwwroot and fixed default nginx conf
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
Piotr Biernat 2021-11-23 00:28:30 +01:00
parent 4ab2cb28f6
commit cafd520a6c
2 changed files with 5 additions and 5 deletions

4
.gitignore vendored
View File

@ -1 +1,3 @@
.history/ .history/
/test

View File

@ -1,6 +1,3 @@
# This is a default site configuration which will simply return 404, preventing
# chance access to any other virtualhost.
server { server {
listen 80 default_server; listen 80 default_server;
listen [::]:80 default_server; listen [::]:80 default_server;
@ -43,4 +40,5 @@ server {
error_log /var/log/nginx/app_error.log; error_log /var/log/nginx/app_error.log;
access_log /var/log/nginx/app_access.log; access_log /var/log/nginx/app_access.log;
} }