mirror of
https://github.com/minoplhy/chhoto-url.git
synced 2024-11-22 09:16:46 +00:00
chg: Make the Cache-Control header configurable
This commit is contained in:
parent
eab1c9bc73
commit
8ff4c3f24f
@ -34,6 +34,11 @@ async fn main() -> Result<()> {
|
|||||||
.parse::<u16>()
|
.parse::<u16>()
|
||||||
.expect("Supplied port is not an integer");
|
.expect("Supplied port is not an integer");
|
||||||
|
|
||||||
|
let cache_control_header = env::var("cache_control_header")
|
||||||
|
.ok()
|
||||||
|
.filter(|s| !s.trim().is_empty())
|
||||||
|
.unwrap_or(String::from("Enable"));
|
||||||
|
|
||||||
// Actually start the server
|
// Actually start the server
|
||||||
HttpServer::new(move || {
|
HttpServer::new(move || {
|
||||||
App::new()
|
App::new()
|
||||||
@ -49,7 +54,11 @@ async fn main() -> Result<()> {
|
|||||||
.app_data(web::Data::new(AppState {
|
.app_data(web::Data::new(AppState {
|
||||||
db: database::open_db(db_location.clone()),
|
db: database::open_db(db_location.clone()),
|
||||||
}))
|
}))
|
||||||
.wrap(middleware::DefaultHeaders::new().add(("Cache-Control", "no-cache, private")))
|
.wrap(if cache_control_header == "Disable" {
|
||||||
|
middleware::DefaultHeaders::new()
|
||||||
|
} else {
|
||||||
|
middleware::DefaultHeaders::new().add(("Cache-Control", "no-cache, private"))
|
||||||
|
})
|
||||||
.service(services::link_handler)
|
.service(services::link_handler)
|
||||||
.service(services::getall)
|
.service(services::getall)
|
||||||
.service(services::siteurl)
|
.service(services::siteurl)
|
||||||
|
Loading…
Reference in New Issue
Block a user