-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Example nginx configuration #10
Comments
Hello @luclu7 😄! Setup IdeaTo setup this game (with nginx or another resources) you can take the generic idea:
Basic SetupBeing minded about the idea above, a basic setup with nginx (supposing that a server is already setup and running) would be:
server {
listen 80;
server_name api.somename.com;
location / {
proxy_pass http://localhost:4555;
}
}
server {
listen 80;
server_name client.somename.com;
location / {
index /client-folder/index.html;
}
} Guides
In case you have some trouble setting it up, I'm totally opened to help you doing that! 🤘 Just send me some message and I will reply it asap 😁. |
i have this problem to build the api |
Hi,
I'm trying to setup this app with an Nginx reverse proxy (mostly for HTTPS), I'd like to know if you have a guide on/know how to setup it that way.
Thank you for making this!
The text was updated successfully, but these errors were encountered: