1# 2# Sample configuration file for nghttpx. 3# 4# * Line staring '#' is treated as comment. 5# 6# * The option name in the configuration file is the long command-line 7# option name with leading '--' stripped (e.g., frontend). Put '=' 8# between option name and value. Don't put extra leading or trailing 9# spaces. 10# 11# * The options which do not take argument in the command-line *take* 12# argument in the configuration file. Specify 'yes' as argument 13# (e.g., http2-proxy=yes). If other string is given, it disables the 14# option. 15# 16# * To specify private key and certificate file, use private-key-file 17# and certificate-file. See the examples below. 18# 19# * conf option cannot be used in the configuration file. It will be 20# ignored. 21# 22# Examples: 23# 24# frontend=0.0.0.0,3000 25# backend=127.0.0.1,80 26# private-key-file=/path/to/server.key 27# certificate-file=/path/to/server.crt 28# http2-proxy=no 29# workers=1 30