nginx_stage pun¶
This command will generate a per-user NGINX (PUN) configuration file for the given user and subsequently launch the NGINX process as the user.
sudo nginx_stage pun [OPTIONS]
General Options¶
-
-a
<app_init_url>
,
--app-init-url
<app_init_url>
¶ The URL the user is redirected to if app doesn’t exist.
-
-N
,
--skip-nginx
¶
Skip execution of the per-user NGINX process.
Warning
If nginx_stage pun --app-init-url
is not specified, then the
server will return a 503 status code when a user requests an app that
doesn’t have a corresponding NGINX configuration file.
Examples¶
To generate a per-user NGINX environment and subsequently launch the NGINX process:
sudo nginx_stage pun --user 'bob' --app-init-url 'https://ondemand.center.edu/nginx/init?redir=$http_x_forwarded_escaped_uri'
This will add a redirect URL if the user accesses an app that doesn’t have a respective NGINX configuration file.
To generate only the per-user NGINX environment:
sudo nginx_stage pun --user 'bob' --skip-nginx
This will return the path to the generated PUN configuration file and will not run the NGINX process. In addition it won’t add a redirect URL.
Default Installation¶
The directory structure that is created when a per-user NGINX process is staged and launched under a default installation appears as:
/var # drwxr-xr-x root root
├── lib # drwxr-xr-x root root
│ └── nginx # drwxr-xr-x root root
│ ├── config # drwxr-xr-x root root
│ │ ├── apps # drwxr-xr-x root root
│ │ │ ├── dev # drwxr-xr-x root root
│ │ │ │ └── <user> # drwxr-xr-x root root
│ │ │ │ └── <app>.conf # -rw-r--r-- root root
│ │ │ └── usr # drwxr-xr-x root root
│ │ │ └── <user> # drwxr-xr-x root root
│ │ │ └── <app>.conf # -rw-r--r-- root root
│ │ └── puns # -rw-r--r-- root root
│ │ └── <user>.conf # -rw-r--r-- root root
│ └── tmp # drwxr-xr-x root root
│ └── <user> # drwxr-xr-x root root
│ ├── client_body # drwx------ USER root
│ ├── fastcgi_temp # drwx------ USER root
│ ├── proxy_temp # drwx------ USER root
│ ├── scgi_temp # drwx------ USER root
│ └── uwsgi_temp # drwx------ USER root
├── log # drwxr-xr-x root root
│ └── nginx # drwxr-xr-x root root
│ └── <user> # drwxr-xr-x root root
│ ├── access.log # -rw-r--r-- root root
│ └── error.log # -rw-r--r-- root root
└── run # drwxr-xr-x root root
└── nginx # drwxr-xr-x root root
└── <user> # drwx------ apache root
├── passenger.pid # -rw-r--r-- root root
└── passenger.sock # srw-rw-rw- root root