11 lines
249 B
Plaintext
11 lines
249 B
Plaintext
server {
|
|
listen 80;
|
|
server_name sysacad.midominio.com; # <--- CAMBIAR POR DOMINIO REAL
|
|
|
|
location / {
|
|
proxy_pass http://127.0.0.1:8080;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
}
|
|
}
|