Show all posts by user
Introduce yourselves
Page 1 of 1 Pages: 1
Results 1 - 10 of 10
I am running an Ubuntu 20.04 LEMP (Linux, Nginx, MariaDb, PHP) webserver. I am also doing some nmap vulnerability tests form my MacOS Client machine. On MacOS, I am using Oh-My-Zsh! with the `nmap` plugin enabled. To do some vulnerability tests on my Ubuntu Server from my MacOS client machine, I issued the command:
nmap_check_for_vulns my.server.ip.address
which is an alias command fo
by
Danran
-
Nginx Mailing List - English
I am trying to recover an old forum account so I can delete it, and use that email address for my current forum email address. However, I don't know my username and password for the old account. I only know the email address which is "xxxxxxx@live.com". When requesting a password reset in the nginx forums, I get not email in my Live account inbox or spam folders. Please let me know how I
by
Danran
-
Site Suggestions
No, that isn't the case. I am using a @live.com email address and am having the same issue. Actually, I'm trying to do a password recovery for an old account that I signed up for, but don't remember the password. When I enter the account email address, it says the password recovery email was sent, however, I promise you, I am not receiving these emails, nor is my spambox.
by
Danran
-
Site Suggestions
On https://www.nginx.com/resources/wiki/community/irc/, the page mentions there being an officila Nginx IRC Channel. I am looking to tap into this for support, but there is no mention of what the IRC Channel actually is called and how to find it? I'm new to IRC, and need someone to help me get into the Official Nginx IRC Channel. Thanks
by
Danran
-
Other discussion
I am trying to block all traffic to a specific Nginx and wordpress page by using a "deny all;" entry in location directives. However, the pages that I am blocking don't block any traffic after adding the directive. The best solution I have found is to have Nginx redirect traffic to a missing page by including the "error_page 403 =444;" directive just below the "deny all;&q
by
Danran
-
How to...
Hey Everyone, I joined this forum a while ago but haven't really used it until now. I am actively building a LEMP server from home, and just wanted to introduce myself and say hi. Hopefully you guys will be able to help me out with Nginx questions I may have and in time, vice versa. I hope you all have a great day!
Dan Ran
dan@danran.rocks
https://danran.rocks
by
Danran
-
New Member Introductions
I am running a lemp server which is working and running wordpress quite properly. As of now, I have my wordpress web login blacklisted by all IP addresses EXCEPT any IP on my lan with the following directive:
server {
# Allow local only to wp-login page
location ~ /wp-login.php {
allow 192.168.1.0/24;
deny all;
error_page 403 =444;
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/va
by
Danran
-
Nginx Mailing List - English
Try this at the very top without adding it to a location directive:
server {
allow 192.168.1.0/24;
deny all;
This "Should" block all external (non-local) traffic to your webserver, and only allow traffic on your lan to see you webpage.
If you are trying to block something on your LAN, then you need to specify the specific IP in the allow and deny directives. You currently are
by
Danran
-
Other discussion
Your setup environment is rather vague, so I will give this a sort of noob shot. Just a guess here, but you may have to port forward on the vps that is serving the subdomain or possibly unblock some ports in your firewall, or both.
by
Danran
-
Other discussion
I am running a lemp server which is working and running wordpress quite properly. As of now, I have my wordpress web login blacklisted by all IP addresses EXCEPT any IP on my lan with the following directive:
server {
# Allow local only to wp-login page
location ~ /wp-login.php {
allow 192.168.1.0/24;
deny all;
error_page 403 =444;
i
by
Danran
-
Other discussion