You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a simple nginx.conf at the root of my git repository. I want to launch Nginx in a pod with this command: oc new-app registry.access.redhat.com/rhscl/nginx-114-rhel7~https://github.com/user/repo.git
The build and deployment configuration seem to have gone fine. However, the pod does not show any log output at all! How do I verify if the launch is successful or not?
Hum, I think you should get access & error logging by default. Can you try adding something like the below to your nginx.conf? Does the build log show any errors?
I have the same issue, except that I do not have a special conf file, my image contains only an HTML page and some images:
FROM registry.access.redhat.com/rhel8/nginx-118:1
COPY build/docs/asciidoc/ ./
# Run script uses standard ways to run the application
CMD nginx -g "daemon off;"
I have a simple
nginx.conf
at the root of mygit
repository. I want to launch Nginx in a pod with this command:oc new-app registry.access.redhat.com/rhscl/nginx-114-rhel7~https://github.com/user/repo.git
The build and deployment configuration seem to have gone fine. However, the pod does not show any log output at all! How do I verify if the launch is successful or not?
nginx.conf
The text was updated successfully, but these errors were encountered: