Skip to content
Snippets Groups Projects

http: allow all forks to process HTTP requests

Merged Marek Vavrusa requested to merge http-allow-reuseport into master
All threads resolved!
Compare and
3 files
+ 58
40
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 14
10
@@ -26,8 +26,8 @@ for starters?
-- Load HTTP module with defaults
modules = {
http = {
host = 'localhost',
port = 8053,
host = 'localhost', -- Default: 'localhost'
port = 8053, -- Default: 8053
geoip = 'GeoLite2-City.mmdb' -- Optional, see
-- e.g. https://dev.maxmind.com/geoip/geoip2/geolite2/
-- and install mmdblua library
@@ -50,8 +50,6 @@ Major drawback is that current browsers won't do HTTP/2 over insecure connection
.. code-block:: lua
http = {
host = 'localhost',
port = 8053,
cert = false,
}
@@ -60,8 +58,6 @@ If you want to provide your own certificate and key, you're welcome to do so:
.. code-block:: lua
http = {
host = 'localhost',
port = 8053,
cert = 'mycert.crt',
key = 'mykey.key',
}
@@ -286,10 +282,18 @@ Services exposed in the previous part share the same external interface. This me
.. code-block:: lua
http.interface('127.0.0.1', 8080, {
['/conf'] = {'application/json', function (h, stream) print('configuration API') end},
['/private'] = {'text/html', static_page},
})
http.add_interface {
endpoints = {
['/conf'] = {
'application/json', function (h, stream)
return 'configuration API\n'
end
},
},
-- Same options as the config() method
host = 'localhost',
port = '8054',
}
This way you can have different internal-facing and external-facing services at the same time.
Loading