14 lines
305 B
Text
14 lines
305 B
Text
server {
|
|
listen 80;
|
|
listen 443 ssl;
|
|
server_name home.*;
|
|
|
|
include /config/nginx/ssl.conf;
|
|
include /config/nginx/local_only.conf;
|
|
|
|
location / {
|
|
include /config/nginx/resolver.conf;
|
|
include /config/nginx/proxy.conf;
|
|
proxy_pass http://homepage:3000/;
|
|
}
|
|
}
|