Skip to content

Instantly share code, notes, and snippets.

@dalthonmh
Created September 15, 2025 22:21
Show Gist options
  • Select an option

  • Save dalthonmh/c901933ae552e014a487404121e6490c to your computer and use it in GitHub Desktop.

Select an option

Save dalthonmh/c901933ae552e014a487404121e6490c to your computer and use it in GitHub Desktop.
nginx.conf para windows server aplicacion Angular 20
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name _ default_server;
root E:/www/torata-intranet/browser;
index index.csr.html;
location / {
try_files $uri $uri/ /index.csr.html;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment