All checks were successful
build, sign and push / build-and-sign (push) Successful in 27s
20 lines
361 B
Nginx Configuration File
20 lines
361 B
Nginx Configuration File
worker_processes auto;
|
|
pid /tmp/nginx.pid;
|
|
|
|
events {}
|
|
|
|
http {
|
|
client_body_temp_path /tmp/client_body;
|
|
proxy_temp_path /tmp/proxy;
|
|
fastcgi_temp_path /tmp/fastcgi;
|
|
uwsgi_temp_path /tmp/uwsgi;
|
|
scgi_temp_path /tmp/scgi;
|
|
|
|
server {
|
|
listen 8080;
|
|
location / {
|
|
return 200 'Hello from custom nginx!';
|
|
}
|
|
}
|
|
}
|