All checks were successful
Reese's Arch Toolbox / build-and-push-arch-toolbox (push) Successful in 14s
20 lines
289 B
Nginx Configuration File
20 lines
289 B
Nginx Configuration File
|
|
user nginx;
|
|
worker_processes auto;
|
|
|
|
error_log /var/log/nginx/error.log notice;
|
|
pid /var/run/nginx.pid;
|
|
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
|
|
stream {
|
|
server {
|
|
listen 2222;
|
|
listen [::]:2222;
|
|
proxy_pass podman.reeselink.com:2222;
|
|
}
|
|
} |