-
-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathserve.zig
More file actions
31 lines (27 loc) · 718 Bytes
/
serve.zig
File metadata and controls
31 lines (27 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//!
//! Part of the Zap examples.
//!
//! Build me with `zig build serve`.
//! Run me with `zig build run-serve`.
//!
const std = @import("std");
const zap = @import("zap");
fn on_request(r: zap.Request) !void {
r.setStatus(.not_found);
r.sendBody("<html><body><h1>404 - File not found</h1></body></html>") catch return;
}
pub fn main() !void {
var listener = zap.HttpListener.init(.{
.port = 3000,
.on_request = on_request,
.public_folder = "examples/serve",
.log = true,
});
try listener.listen();
std.debug.print("Listening on 0.0.0.0:3000\n", .{});
// start worker threads
zap.start(.{
.threads = 2,
.workers = 2,
});
}