it is possible use cloudflare free plan for game back end using http
http server answering game protocols and sending using http cloud flare proxy protection
public class HelloWorld extends HttpServlet {
public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
PrintWriter out = response.getWriter();
out.println("<html>\n" +
"<head><title>Hello WORLD</title></head>\n" +
"<body>\n" +
"<h1>Hello WORLD</h1>\n" +
"</body></html>");
}
}
what are the disadvantages of using http for game back end?
is possible use the google vm instance always free like proxy for ddos protection using google network?
Aucun commentaire:
Enregistrer un commentaire