add virtual host support
parent
22ae45beb5
commit
8512438638
@ -1,84 +1,129 @@
|
|||||||
# vim: set ft=yaml:
|
# vim: set ft=yaml:
|
||||||
#
|
|
||||||
# server config file
|
|
||||||
|
|
||||||
# document root
|
# when provide certficate file, server will listen https and enable http2
|
||||||
docroot: /var/www/html
|
|
||||||
|
|
||||||
# used for http2 to determine local path request
|
|
||||||
# or proxy request
|
|
||||||
localdomains:
|
|
||||||
- www.simicloud.com
|
|
||||||
- localhost
|
|
||||||
- 127.0.0.1
|
|
||||||
|
|
||||||
# listener
|
# http config
|
||||||
listen:
|
-
|
||||||
-
|
# listen address
|
||||||
# listen address
|
host: 0.0.0.0
|
||||||
host: 0.0.0.0
|
|
||||||
|
|
||||||
# listen port
|
# listen port
|
||||||
port: 80
|
port: 9001
|
||||||
|
|
||||||
# enable proxy or not
|
# default document root
|
||||||
enableproxy: false
|
docroot: /srv/www
|
||||||
-
|
|
||||||
host: 0.0.0.0
|
|
||||||
port: 443
|
|
||||||
# server certificate
|
|
||||||
cert: server.crt
|
|
||||||
# server private key
|
|
||||||
key: server.key
|
|
||||||
enableproxy: false
|
|
||||||
|
|
||||||
# url rules
|
enableproxy: false
|
||||||
urlrules:
|
|
||||||
-
|
|
||||||
# alias map url to path
|
|
||||||
urlprefix: /robots.txt
|
|
||||||
|
|
||||||
# available type: alias, fastcgi, uwsgi, http
|
# default host's url rule
|
||||||
type: alias
|
#urlrules:
|
||||||
|
# -
|
||||||
|
# urlprefix: /a
|
||||||
|
# type: alias
|
||||||
|
# target:
|
||||||
|
# type: dir
|
||||||
|
# path: /home/user1/a
|
||||||
|
# -
|
||||||
|
# urlprefix: /b/a.txt
|
||||||
|
# type: alias
|
||||||
|
# target:
|
||||||
|
# type: file
|
||||||
|
# path: /home/user1/a/b/a.txt
|
||||||
|
|
||||||
# target
|
# virtual host config
|
||||||
target:
|
vhost:
|
||||||
# availabe target type for alias: file, dir
|
- &example1_www
|
||||||
type: file
|
hostname: www.example1.com
|
||||||
path: /home/aaa/robots.txt
|
docroot: /var/www/html/
|
||||||
-
|
# cert:
|
||||||
# alias map url to path
|
# key:
|
||||||
urlprefix: /cc
|
|
||||||
type: alias
|
|
||||||
target:
|
|
||||||
type: dir
|
|
||||||
path: /home/cc
|
|
||||||
-
|
|
||||||
# pass to uwsgi server
|
|
||||||
urlprefix: /media
|
|
||||||
type: uwsgi
|
|
||||||
target:
|
|
||||||
# available target type for uwsgi: unix, tcp
|
|
||||||
type: unix
|
|
||||||
path: /path/to/media.sock
|
|
||||||
-
|
|
||||||
# pass all php script to fastcgi server
|
|
||||||
urlprefix: \.php$|\.php/
|
|
||||||
|
|
||||||
# use regex to match the url
|
# url rule for www.example.com
|
||||||
isregex: true
|
urlrules:
|
||||||
|
-
|
||||||
|
# url start with /APIv1/ forward to uwsg socket
|
||||||
|
urlprefix: /APIv1/
|
||||||
|
type: uwsgi
|
||||||
|
target:
|
||||||
|
type: unix
|
||||||
|
path: /run/uwsgi/APIv1.sock
|
||||||
|
-
|
||||||
|
# route php script to fastCGI socket
|
||||||
|
urlprefix: /phpmyadmin/.*\.php$
|
||||||
|
|
||||||
type: fastcgi
|
# set to true means urlprefix is regex expression
|
||||||
target:
|
isregex: true
|
||||||
# available target type for fastcgi: unix, tcp
|
|
||||||
type: unix
|
type: fastcgi
|
||||||
path: /path/to/php.sock
|
target:
|
||||||
-
|
type: unix
|
||||||
urlprefix: /auth
|
path: /var/run/php-fpm/www.sock
|
||||||
# http resverse proxy
|
-
|
||||||
type: http
|
# url start with /proxy/ forward to http://10.10.1.1
|
||||||
target:
|
# this act as reverse proxy
|
||||||
# available http type for http: http, unix
|
urlprefix: /proxy/
|
||||||
type: http
|
type: http
|
||||||
host: 127.0.0.1
|
target:
|
||||||
port: 8080
|
type: http
|
||||||
|
host: 10.10.1.1
|
||||||
|
port: 8080
|
||||||
|
- &example1
|
||||||
|
<<: *example1_www
|
||||||
|
hostname: example1.com
|
||||||
|
|
||||||
|
- &example_www
|
||||||
|
hostname: www.example.com
|
||||||
|
docroot: /var/www/example
|
||||||
|
urlrules:
|
||||||
|
-
|
||||||
|
urlprefix: /APIv2
|
||||||
|
type: uwsgi
|
||||||
|
target:
|
||||||
|
type: unix
|
||||||
|
path: /run/uwsgi/APIv2.sock
|
||||||
|
- &example
|
||||||
|
<<: *example_www
|
||||||
|
hostname: example.com
|
||||||
|
|
||||||
|
- &example_bbs
|
||||||
|
hostname: bbs.example.com
|
||||||
|
docroot: /var/www/example_bbs/
|
||||||
|
urlrules:
|
||||||
|
-
|
||||||
|
#urlprefix: \.php$|\.php\/.*
|
||||||
|
#isregex: true
|
||||||
|
|
||||||
|
urlprefix: /
|
||||||
|
type: fastcgi
|
||||||
|
target:
|
||||||
|
type: unix
|
||||||
|
path: /var/run/php-fpm/www.sock
|
||||||
|
|
||||||
|
# https config
|
||||||
|
-
|
||||||
|
host: 0.0.0.0
|
||||||
|
port: 9002
|
||||||
|
docroot: /srv/www
|
||||||
|
enableproxy: false
|
||||||
|
vhost:
|
||||||
|
-
|
||||||
|
<<: *example1
|
||||||
|
cert: /home/user1/cert/example1.com.crt
|
||||||
|
key: /home/user1/cert/example1.com.key
|
||||||
|
-
|
||||||
|
<<: *example1_www
|
||||||
|
cert: /home/user1/cert/example1.com.crt
|
||||||
|
key: /home/user1/cert/example1.com.key
|
||||||
|
-
|
||||||
|
<<: *example_www
|
||||||
|
cert: /etc/letsencrypt/live/example.com/fullchain.pem
|
||||||
|
key: /etc/letsencrypt/live/example.com/privkey.pem
|
||||||
|
-
|
||||||
|
<<: *example
|
||||||
|
cert: /etc/letsencrypt/live/example.com/fullchain.pem
|
||||||
|
key: /etc/letsencrypt/live/example.com/privkey.pem
|
||||||
|
-
|
||||||
|
<<: *example_bbs
|
||||||
|
cert: /etc/letsencrypt/live/bbs.example.com/fullchain.pem
|
||||||
|
key: /etc/letsencrypt/live/bbs.example.com/privkey.pem
|
||||||
|
Loading…
Reference in New Issue