How to access two servers on one domain [closed] - html

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
Port 80 is forwarded to a server on my network which has links to the different projects I'm working on, how could I allow people to connect to the server running on my laptop when I'm using it? I would obviously not prefer to change my router settings frequently to port forward to my laptop. I want the user to access my domain and maybe have a set of links which will be described as static and another set which will have a description cautioning the user that said links will only work when I am online and they would somehow redirect to my laptop. (Lamp Server)

Well, if I understood correctly your question, you should configure your laptop as a reverse proxy for your main server.
As you said, you should have a set of links which will redirect to your laptop (via reverse proxy config), but of course these links will work only when your laptop is available.

Related

Proxy to MITM over Eduroam school network [closed]

Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 days ago.
Improve this question
I am trying to proxy my phones various requests to my computer running MITM. Both my phone and my laptop are on a Eduroam network.
I used IPCONFIG to fetch my wireless LAN adapter wifi IPv4 address. I then used this IP address as a manual proxy (on iphone & android) with port 8080. However both times I am met with request timeouts when I try to actually visit something on the phone. Am I doing something incorrectly?

Website shows secure on browser, but unsecure (without SSL certifcate) in mobile [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 3 years ago.
Improve this question
I think I successfully installed SSL certificate to my website, it shows secure on browser:
but when I open website in chrome mobile browser, it says:
Your connection to this site is not secure
You should not enter any sensitive information on this site ....
Is there any problem installing SSL certificate. I restarted my mobile, deleted all cookies, stories :( and still same thing. Any clue?
update: Server side configuration
server {
listen 80;
server_name IP_Address domain_name.com;
return 301 https://$server_name$request_uri;
}
Try changing the URL in the address bar of your mobile web browser from http://... to https://....
If that fixes the problem, you will need to create a redirect that automatically does this for your visitors.

How configure charles-proxy to work with chrome in linux [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 3 years ago.
Improve this question
I try setting the chrome proxy:
google-chrome --proxy-server=127.0.0.1:8888
Chrome opens a new window, but charles does not capture any.
Charles opens up a proxy usually at localhost:8888 (you can change it in the Proxy > Proxy settings... menu), so what you have to do is simply add this proxy server to your connections.
The best way to achieve that I've found is by installing the Proxy SwitchyOmega extension, configuring the proxy parameters as told before and switching manually whenever you want to track http requests.
It's not as easy as it is on windows but works fine for me.

Whireshark DNS makes additional queries when searching URL [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
An 101 question about whireshark:
I first flushed my DNS and then started capturing my interface with wireshark.
Then I opened google chrome and searched for a webpage.
Finally, wireshark except the first query about the url makes some additional queries for related names/urls.
for example :
Searched for www.aueb.gr and dns makes an additional query for art.aub.gr.
Why is this happening?
Thank you in advance.
Try using console application for DNS resolution (for example nslookup) during wireshark capture, it should give you exactly what you want. Web browsers or other applications can try to resolve some additional DNS entries, which may be the cause of the issue you are seeing.
For example:
nslookup www.aueb.gr
As for the behavior of chrome, web browsers will try to fetch additional resources (like images, cascading style sheets, scripts) in order to be able to display the web page correctly. If it happens that the resource is hosted in some other domain (like art.aueb.gr), the web browser will have to first resolve that domain name - and that is why you see additional DNS queries.

How can I connect my other computer to phpMyAdmin localhost? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 9 years ago.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Improve this question
I have another pc over at my fiance's house & I'm trying to connect to my home computer's myphpadmin (localhost), database 'users'. Is there any way I can do it or is it impossible?
& is there a way I can make it accessible to all ip address's? I need it for a couple friends & I to work on a game together.
I guess I left out 1 part. I used 1 method I could find. The no-ip beings I have a dynamic IP address. I tried to connect & it wouldn't let me.
Connect both computer to using lan or wi-fi. or configure network.
now check ip-address of your php hosted pc.
if your computer is connected with same netwrk then you can access via ip-address/phpmyadmin
ex. 192.168.x.x/phpmyadmin.
make sure both computer must in same network.
if your system is an a local network then it's possible ..
open httpd.conf file and change the below code
Options FollowSymLinks
AllowOverride None
Order deny,allow
Allow from all
#Deny from all
change it to
AllowOverride None
Options None
Order allow,deny
Allow from all
and restart the wampserver...