This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Typically I use this file as a boilerplate to configure an nginx docker container | |
# | |
# This goes in /etc/nginx/conf.d/default.conf | |
# If you are reverse proxying an API | |
upstream api { | |
server API_SERVER_GOES_HERE:port; | |
} | |
server { |