Nginx is included in Gitpod's workspace-full docker image. This example shows how to interact with Nginx and how to configure Nginx. Configuration is optionl, since a default configuration is included in workspace-full.
open https://gitpod.io#https://github.com/gitpod-io/nginx-example
nginx
- start Nginx (it's started automatically on workspace launch)nginx -s stop
- stop Nginxnginx -s reload
- reload Nginx configgp open /etc/nginx/nginx.conf
- Open nginx.conf in Gitpod editorgp open /var/log/nginx/access.log
- Open access.log in Gitpod editorgp open /var/log/nginx/error.log
- Open error.log in Gitpod editormultitail /var/log/nginx/access.log -I /var/log/nginx/error.log
- View and follow logs in Terminal