Created
May 29, 2023 17:20
-
-
Save fazaio/e291139a313400699d17c60e897a5a18 to your computer and use it in GitHub Desktop.
nginx
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
nginx file | |
server { | |
listen 80; | |
listen [::]:80; | |
root /var/www/javasuperapp.com/html; | |
index index.html index.htm index.nginx-debian.html; | |
server_name javasuperapp.com www.javasuperapp.com; | |
location / { | |
try_files $uri $uri/ =404; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment