Ihar Hancharenka 5dff80e88e first
2023-03-27 16:52:17 +03:00

20 строки
360 B
Plaintext

/etc/nginx/nginx.conf
http {
server {
listen 8080;
server_name localhost;
location / {
root /www/html;
index index.html intex.htm;
autoindex on;
}
error_page 500 502 503 504 /50x.html;
location /50x.html {
root /www/html;
}
}
}