mylloon.fr/src/main.rs

55 lines
1.5 KiB
Rust
Raw Normal View History

2023-02-09 11:42:39 +01:00
use actix_files::Files;
2023-02-16 21:59:04 +01:00
use actix_web::{middleware::DefaultHeaders, web, App, HttpServer};
2023-04-14 11:30:47 +02:00
use std::io::Result;
2023-04-14 18:03:30 +02:00
use crate::routes::{
2023-04-16 13:18:15 +02:00
agreements, blog, contrib, cours, gaming, index, networks, not_found, portfolio, web3,
2023-04-14 18:03:30 +02:00
};
2023-04-14 11:44:49 +02:00
2023-02-08 20:49:05 +01:00
mod config;
2023-02-09 11:19:53 +01:00
mod template;
2023-02-20 15:14:08 +01:00
2023-04-14 11:44:49 +02:00
mod misc;
mod routes;
2023-04-14 11:30:58 +02:00
2023-02-08 20:49:05 +01:00
#[actix_web::main]
2023-04-14 11:30:47 +02:00
async fn main() -> Result<()> {
2023-02-09 11:42:39 +01:00
let config = config::get_config("./config/config.toml");
2023-02-08 20:49:05 +01:00
2023-04-09 15:19:23 +02:00
let addr = ("0.0.0.0", config.fc.port.unwrap());
2023-02-09 11:36:22 +01:00
println!(
"Listening to {}://{}:{}",
config.clone().fc.scheme.unwrap(),
addr.0,
addr.1
);
HttpServer::new(move || {
App::new()
.app_data(web::Data::new(config.clone()))
.wrap(DefaultHeaders::new().add((
"Onion-Location",
config.fc.onion.as_deref().unwrap_or_default(),
)))
.service(index::page)
.service(agreements::security)
.service(agreements::humans)
.service(agreements::robots)
.service(agreements::sitemap)
.service(networks::page)
.service(portfolio::page)
.service(contrib::page)
2023-04-14 11:30:58 +02:00
.service(blog::index)
.service(blog::page)
2023-04-14 12:25:20 +02:00
.service(web3::page)
2023-04-14 18:03:30 +02:00
.service(gaming::page)
2023-04-16 13:18:15 +02:00
.service(cours::page)
.service(Files::new("/", config.static_location.clone()))
.default_service(web::to(not_found::page))
})
.bind(addr)?
.run()
.await
2023-02-02 11:06:27 +01:00
}