Files
dtic-DIIAA/servicios/proxy/config/nginx.conf
T

26 lines
231 B
Nginx Configuration File

events {
worker_connections 1024;
}
http {
server {
listen 80;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ =404;
}
}
}