Code & Deploy
siGit Code
Git Hosting
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@samitouri
/
QOSAMI-X402Tunnel
QOSAMI-X402Tunnel
/
frontend
/
nginx.conf
Code
Commits
Issues
Pulls
Sessions
CI/CD
main
main
conf
13 lines
213 Bytes
Copy permalink
Copy
Raw
1
server
{
2
listen
8080
;
3
server_name
_
;
4
access_log
off
;
5
error_log
/var/log/nginx/error.log
warn
;
6
7
root
/usr/share/nginx/html
;
8
index
index.html
;
9
10
location
/
{
11
try_files
$uri
$uri
/
/index.html
;
12
}
13
}