我将很快在服务器上升级到Linux Debian 6.0 "Squeeze",我想知道如何在许多专用于不同事情的端口上使用Python作为web服务器。
Ports Directory Description
80, 443 /var/www/sitegen/ Take all domains and generate a site from the SQL DB
444, 1000-3000 /var/www/manager/ Take 444 as a PHP server manager and th
Dockerfile Docker运行命令:docker run -itd -p 8080:80 prod FROM node:16-alpine as builder
WORKDIR /app
COPY package.json ./
COPY package-lock.json ./
COPY . /app/
RUN npm install --silent
RUN npm install react-scripts@4.0.3 -g --silent
RUN npm run build
# production environment
FROM nginx:1.21.1-alpine
所以我继承了一台linux服务器,并不清楚它的apache配置。
在httpd.conf文件中,它包含以下内容:
Listen 80
#Listen 443
基于
"Note that if the <VirtualHost> is set for an address and port that
the server is not listening to, it cannot be accessed"
然而,此服务器使用SSL并成功地接收请求。
以下是vhost指令之一。
<VirtualHost *:80>
ServerName www.s