Last active
June 11, 2021 23:46
-
-
Save RienNeVaPlus/c830d443bb25bb94eaa8f751c1bd63dd to your computer and use it in GitHub Desktop.
How-to configure Mail-in-a-Box (MIAB) nginx to work with StencilJS or any other JavaScript router that requires a single entry point
This file contains hidden or 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
location / { | |
index index.html; | |
try_files $uri $uri/ /index.html; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Note: it's required to rename the
conf
file after editing it, otherwise the changes won't get picked up by theweb_update
script.