hello guys pls where can I buy a bulletprooff vps server
As of now I know only 1 shinjeru and spaceship,
i cant open account on those site. they block me immediately i try to register
are u using emails to create account from tmpmail ?
I am using emails. Gmails and webmail
Please can i host a phishing script on ngix. Cyberpannel red my page immediately i upload to it
Yes you can use nginx , any other web host software
i have problem 405 error posting on nginx but other web host software red my page immediately
Are your pages static pages in HTML ?
yes html and php for posting
Okay saying that kiss you shouldn’t face this particular issue if you are facing this issue then there is high chance that file permissions are not right
So cd to the folder where the files are and do ls -all
To check all permissions on each file use the chat GPT to assign right permissions.
the html is working fine but posting is the problem
whats posting ? sending post request ?
yes. telegram posting
i dont recoment that adding in front specially in static pages ,as it might lead to leak .
better option will be creating flask app for serving same file and adding one more function for post which will handle sending to tele on backend
server {
listen 80;
server_name 69.62.123.XXX; # Replace with your domain or IP address
root /var/www/bang/html; # Replace with the actual path to your "demo" folder
index index.html;
location / {
try_files $uri $uri/ =404;
# Allow GET, POST, and PUT methods (or whatever methods your application requires)
limit_except GET POST PUT {
deny all;
}
}
# Custom Error Pages
error_page 404 /404.html;
location = /404.html {
root /var/www/bang/html;
internal;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /var/www/bang/html;
internal;
}
# Logging
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
}
I got this solution online still not working
how can i do that, cberpannel and other red my page immediately i upload my files
no need for cyberpanel u can do with flask + Nginx too
its your existing setup only but u are serving from flask
how do go about that please