ฉันต้องการยกเลิกการคอมเม้นต์ข้อความที่มีอยู่ในไฟล์เริ่มต้น
ไฟล์ในเว็บไซต์นี้คล้ายกับไฟล์เริ่มต้นของฉันมาก
https://salsa.debian.org/nginx-team/nginx/blob/master/debian/conf/sites-available/default
ความแตกต่างคือเพราะฉันใช้ใบรับรอง https ฉันมีในไฟล์เริ่มต้นส่วนอื่นของเซิร์ฟเวอร์ {} และภายในนั้นฉันมีอีกส่วนหนึ่งของส่วนต่อไปนี้ ... ดังนั้นฉันต้องค้นหาในส่วนเซิร์ฟเวอร์ {} แรกและเพิ่ม info.php ไปยังบรรทัดที่มีลูกศรที่ฉันสร้างขึ้นเพื่อแสดงให้เห็นถึงบรรทัดที่ฉันต้องการเพิ่ม info.php
เซิร์ฟเวอร์ {
# Add index.php to the list if you are using PHP
--> index index.html index.htm index.nginx-debian.html;
# pass PHP scripts to FastCGI server
#
#location ~ \.php$ {
#include snippets/fastcgi-php.conf;
#
# # With php-fpm (or other unix sockets):
#fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
# # With php-cgi (or other tcp sockets):
#fastcgi_pass 127.0.0.1:9000;
#include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
#deny all;
#}
# Virtual Host configuration for example.com
#
# You can move that to a different file under sites-available/ and symlink that
# to sites-enabled/ to enable it.
#
#server {
# listen someport;
# listen [::]:someport;
#
# server_name example.com;
#
# root /var/www/example.com;
# index index.html;
#
# location / {
# try_files $uri $uri/ =404;
# }
#}
}
จากนั้นค้นหาที่เซิร์ฟเวอร์ {} ส่วนถัดไปและในส่วนนี้ฉันต้องเปลี่ยน:
เซิร์ฟเวอร์ {
# Add index.php to the list if you are using PHP
index index.html index.htm index.nginx-debian.html;
server_name mydomainname.com; # managed by Certbot
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
}
# pass PHP scripts to FastCGI server
#
#location ~ \.php$ {
#include snippets/fastcgi-php.conf;
#
# # With php-fpm (or other unix sockets):
#fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
# # With php-cgi (or other tcp sockets):
#fastcgi_pass 127.0.0.1:9000;
#include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
#deny all;
#}
listen [::]:someport ssl ipv6only=on; # managed by Certbot
listen someport ssl; # managed by Certbot
}
สำหรับสิ่งนี้:
เซิร์ฟเวอร์ {
# Add index.php to the list if you are using PHP
index index.html index.htm index.nginx-debian.html;
server_name mydomainname.com; # managed by Certbot
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
}
# pass PHP scripts to FastCGI server
#
location ~ \.php$ {
include snippets/fastcgi-php.conf;
#
# # With php-fpm (or other unix sockets):
fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
# # With php-cgi (or other tcp sockets):
#fastcgi_pass 127.0.0.1:9000;
include fastcgi_params;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
location ~ /\.ht {
deny all;
}
listen [::]:someport ssl ipv6only=on; # managed by Certbot
listen someport ssl; # managed by Certbot
}
ฉันลองใช้ sed มาแล้ว แต่ฉันไม่ค่อยชอบในไวยากรณ์ของมันเพราะฉันได้รับข้อผิดพลาดทุกอย่างเกี่ยวกับตัวละครพิเศษในนั้นบางคนสามารถช่วยฉันได้ไหม