mirror of
https://github.com/h3pdesign/Neon-Vision-Editor
synced 2026-04-21 13:27:16 +00:00
8 lines
122 B
Nginx Configuration File
8 lines
122 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name example.test;
|
|
|
|
location / {
|
|
proxy_pass http://127.0.0.1:8080;
|
|
}
|
|
}
|