Methods of payment Abuse

How to use Proxy from PQ.Hosting

17.12.2024, 18:38

In this article we will show you how to use a proxy from PQ.Hosting. We will show you the complete process of use, from the purchase itself to accessing blocked resources. In the article you will see examples of connecting proxy on different OS: Windows, macOS and Linux.

Buying a Proxy

To make a proxy purchase, go to billing.

Under "Products and Services" - select "Proxy".

Click "Order."

 

A window will open with product selection, click "Order".

Select the country where the proxy server will be located, the number of required proxies and click on "Activate".

 

Next, select the proxy you purchased and click on "Instructions".

 

A window will open where you can download a text document with the proxy you purchased.

Note in which format the data will be provided in the text document.

  

Once you have purchased and downloaded a text document from your proxy - it needs to be connected.

Proxy Connection on Windows

  1. Type "Proxy" in the Windows search bar.
  2. Click on "Proxy Settings".
  3. Click on "Use Proxy Server."
  4. Enter the IP Address and Port of the proxy server.
  5. Click "Save."

When we surf the browser, we will be asked to enter the login and password of the proxy server:

Proxy Connection on macOS

The fastest way to connect a Proxy is to use the search bar.

Tear it off and the search field write "Proxie", then - go to the settings:

Next, select the type of proxy and fill in the fields: Server, Port, Username and Password. (This is the same data that is in the txt document we downloaded.

 

Click on "ok" and it's done!

Connecting a proxy on Linux

Configuring via Network Manager (GUI)

  1. Open the system settings and go to the Network section.
  2. Select the connection you are using (Wi-Fi or Ethernet) and click on "Configure".
  3. Go to the Proxy tab.
  4. Select "Manual" in the proxy settings.
  5. Specify proxy settings for SOCKS5:
  6. In the Host/Address field, enter the IP address of the proxy server.
  7. In the Port field, enter the port number.
  8. Click Apply to save the settings.
  9. Check the connection to make sure the proxy is working correctly.

Configuring a proxy for the system level

  1. Open a terminal and run the following commands to add system environment variables:
    export http_proxy="socks5://<proxy_ip>:<proxy_port>"
    export https_proxy="socks5://<proxy_ip>:<proxy_port>"
    export ftp_proxy="socks5://<proxy_ip>:<proxy_port>"
    export no_proxy="localhost,127.0.0.1,::1"

    Replace <proxy_ip> and <proxy_port> with the IP address and port of your SOCKS5 proxy.

  2. Apply the changes to the current session:
    source ~/.bashrc


  3. Permanent setting (for all sessions):
    Open the environment configuration file:
    nano ~/.bashrc

    Add lines with SOCKS5 proxy settings there:

    export http_proxy="socks5://<proxy_ip>:<proxy_port>"
    export https_proxy="socks5://<proxy_ip>:<proxy_port>"
    export ftp_proxy="socks5://<proxy_ip>:<proxy_port>"
    export no_proxy="localhost,127.0.0.1,::1"

    Save your changes and reload the file:

    source ~/.bashrc
  4. Work verification:

Use the curl command to test the connection:

curl ifconfig.me