Para instalar Reverb en Laravel 10, sigue estos pasos:
-
Actualiza a la 煤ltima versi贸n de Laravel 10:
composer update laravel/framework
Hide 000webhost logo using CSS
a[title="Hosted on free web hosting 000webhost.com. Host your own website for FREE."]{
display: none;
}
Remove 000webhost logo using Javascipt
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Python: Odoo", | |
"type": "python", | |
"request": "launch", | |
"program": "${workspaceFolder}/odoo-bin", | |
"args": [ | |
"-c", |
models/res_config_settings.py
from odoo import api, fields, models
class ResConfigSettings(models.TransientModel):
_inherit = 'res.config.settings'
sample = fields.Char(string='Sample', config_parameter='module_name.sample')
#odoo server | |
upstream odoo { | |
server 127.0.0.1:8069; | |
} | |
upstream odoochat { | |
server 127.0.0.1:8072; | |
} | |
map $http_upgrade $connection_upgrade { | |
default upgrade; | |
'' close; |
<VirtualHost *:80> | |
ServerName myodoodomain.com | |
RewriteEngine on | |
RewriteCond %{SERVER_NAME} =myodoodomain.com | |
RewriteRule ^ http://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent] | |
</VirtualHost> | |
<IfModule mod_ssl.c> | |
<VirtualHost *:443> | |
ServerName myodoodomain.com |