Server init, removed some trash.

This commit is contained in:
Dejwut
2023-05-16 21:32:06 +02:00
parent c20b530c51
commit bbf1d0136b
8 changed files with 52 additions and 1 deletions
View File
View File
+14
View File
@@ -0,0 +1,14 @@
events {}
http {
server {
listen 80;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
location /api/v1 {
proxy_pass http://server:10000;
}
}
}