/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* LocationConfig.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: me +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/07/23 16:08:00 by me #+# #+# */ /* Updated: 2022/07/25 20:09:48 by me ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef LOCATIONCONFIG_HPP # define LOCATIONCONFIG_HPP // includes // add includes properly # include # include # include # include "Webserv.hpp" // again, struct instead? class LocationConfig { public: // canonic stuff? int client_body_limit; std::string path; std::string root; std::vector index; std::vector allow_methods; std::map cgi_info; }; #endif