2019-06-17 17:35:47 -04:00
|
|
|
// <config-two>
|
2019-06-26 04:27:25 -04:00
|
|
|
use actix_files as fs;
|
|
|
|
use actix_web::{App, HttpServer};
|
2019-06-17 17:35:47 -04:00
|
|
|
|
2020-09-12 16:21:54 +01:00
|
|
|
#[actix_web::main]
|
2019-12-29 03:36:24 +09:00
|
|
|
async fn main() -> std::io::Result<()> {
|
2019-06-26 04:27:25 -04:00
|
|
|
HttpServer::new(|| {
|
|
|
|
App::new().service(
|
|
|
|
fs::Files::new("/static", ".")
|
|
|
|
.show_files_listing()
|
|
|
|
.use_last_modified(true),
|
|
|
|
)
|
|
|
|
})
|
2022-02-26 03:56:24 +00:00
|
|
|
.bind(("127.0.0.1", 8080))?
|
2019-06-26 04:27:25 -04:00
|
|
|
.run()
|
2019-12-29 03:36:24 +09:00
|
|
|
.await
|
2019-06-26 04:27:25 -04:00
|
|
|
}
|
2019-06-17 17:35:47 -04:00
|
|
|
// </config-two>
|